-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
34 lines (32 loc) · 1.2 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "playground-api"
version = "0.3.3"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/amphitheatre-app/playground-api"
authors = [
"Eguo Wang <wangeguo@gmail.com>",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "playground"
path = "src/lib.rs"
[dependencies]
amp-client = { git = "https://github.com/amphitheatre-app/amp-client-rust", tag = "v0.9.5" }
amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.9.6" }
anyhow = "1.0.95"
axum = { version = "0.8.1" }
clap = { version = "4.5.27", features = ["derive", "env"] }
dotenv = "0.15.0"
futures = "0.3.31"
reqwest-eventsource = "0.6.0"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
thiserror = "2.0.11"
tokio = { version = "1.42.0", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
url = "2.5.4"
utoipa = { version = "5.3.1", features = ["axum_extras", "uuid", "chrono", "macros"] }
utoipa-swagger-ui = { version = "9.0.0", features = ["axum", "reqwest"] }
uuid = { version = "1.11.1", features = ["serde", "v4", "fast-rng", "macro-diagnostics"] }