synor/apps/faucet/Cargo.toml
Gulshan Yadav 48949ebb3f Initial commit: Synor blockchain monorepo
A complete blockchain implementation featuring:
- synord: Full node with GHOSTDAG consensus
- explorer-web: Modern React blockchain explorer with 3D DAG visualization
- CLI wallet and tools
- Smart contract SDK and example contracts (DEX, NFT, token)
- WASM crypto library for browser/mobile
2026-01-08 05:22:17 +05:30

52 lines
1 KiB
TOML

[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"