[package] name = "axum-hello-world" version = "0.1.0" edition = "2024" authors = ["The Tor Project, Inc.", "Ramid Khan ", "tidely"] license = "MIT OR Apache-2.0" description = "Example of a HTTP server written with axum, running as a hidden service through Tor" publish = false [dependencies] anyhow = "1.0.75" arti-client = { path = "../../../crates/arti-client", version = "0.43", features = [ "onion-service-service", ] } axum = { version = "0.8.1", features = ["tracing"] } futures = "0.3.14" hyper = { version = "1", features = ["http1", "server"] } hyper-util = { version = "0.1.1", features = ["tokio"] } safelog = { path = "../../../crates/safelog", version = "0.8" } tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync"] } tokio-util = "0.7.10" tor-cell = { path = "../../../crates/tor-cell", version = "0.43" } tor-hsservice = { path = "../../../crates/tor-hsservice", version = "0.43" } tor-proto = { path = "../../../crates/tor-proto", version = "0.43" } tower = { version = "0.5.1", features = ["util", "tracing"] } tracing-subscriber = "0.3.20" [features] full = [ "arti-client/full", "safelog/full", "tor-cell/full", "tor-hsservice/full", "tor-proto/full", ]