27 lines
809 B
TOML
27 lines
809 B
TOML
[package]
|
|
name = "Gamal"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
rusqlite = { version = "0.32.0", features = ["bundled"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
env_logger = "0.11.6"
|
|
log = "0.4.20"
|
|
sha3 = "0.10.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
bincode = "1.3.3"
|
|
tor-cell = "0.28.0"
|
|
tor-hsservice = "0.28.0"
|
|
tor-proto = { version = "0.28.0", features = ["hs-service", "tokio"] }
|
|
arti-client = { version = "0.28.0", features = ["tokio", "onion-service-service", "onion-service-client"]}
|
|
tor-rtcompat = "0.28.0"
|
|
futures = "0.3"
|
|
axum = { version = "0.8.1", features = ["macros"] }
|
|
futures-util = "0.3.30"
|
|
hyper = "1.4.1"
|
|
hyper-util = { version = "0.1.6", features = ["service"] }
|
|
pin-project-lite = "0.2.14"
|
|
tower-service = "0.3.2"
|
|
httparse = "1.10.1" |