1 | [package]
|
2 | name = "ping-pong"
|
3 | version = "0.1.0"
|
4 | edition = "2021"
|
5 |
|
6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
7 |
|
8 | [dependencies]
|
9 | activitypub_federation = { version = "0.4.7", features = ["axum"], default-features = false }
|
10 | anyhow = "1.0.75"
|
11 | async-trait = "0.1.74"
|
12 | axum = { version = "0.6.20", features = ["macros", "headers"] }
|
13 | axum-macros = "0.3.8"
|
14 | chrono = "0.4.31"
|
15 | clap = { version = "4.4.8", features = ["cargo"] }
|
16 | enum_delegate = "0.2.0"
|
17 | env_logger = "0.10.1"
|
18 | lazy_static = "1.4.0"
|
19 | rand = "0.8.5"
|
20 | serde = "1.0.192"
|
21 | tera = "1.19.1"
|
22 | tokio = { version = "1.34.0", features = ["full"] }
|
23 | tracing = "0.1.40"
|
24 | tracing-subscriber = "0.3.18"
|
25 | url = "2.4.1"
|