[package] name = "synor-faucet" version = "0.1.0" edition = "2021" description = "Synor Testnet Faucet - Dispense test tokens" license = "MIT OR Apache-2.0" [[bin]] name = "synor-faucet" path = "src/main.rs" [dependencies] # Async runtime tokio = { version = "1.35", features = ["full"] } # Web framework axum = { version = "0.7", features = ["json"] } tower = { version = "0.4", features = ["timeout", "limit"] } tower-http = { version = "0.5", features = ["cors", "trace"] } # Serialization serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" # HTTP client for RPC calls reqwest = { version = "0.11", features = ["json"] } # Rate limiting governor = "0.6" # Error handling anyhow = "1.0" thiserror = "1.0" # Logging tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] } # Time handling chrono = { version = "0.4", features = ["serde"] } # Environment dotenvy = "0.15" # Hex encoding hex = "0.4" # Synor types synor-types = { path = "../../crates/synor-types" } [dev-dependencies] tokio-test = "0.4"