-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.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.1"
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.3" }
amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.9.4" }
anyhow = "1.0.93"
axum = { version = "0.7.9" }
clap = { version = "4.5.21", features = ["derive", "env"] }
dotenv = "0.15.0"
futures = "0.3.31"
reqwest-eventsource = "0.6.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
thiserror = "2.0.3"
tokio = { version = "1.41.1", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.5.3"
utoipa = { version = "5.2.0", features = ["axum_extras", "uuid", "chrono", "macros"] }
utoipa-swagger-ui = { version = "8.0.3", features = ["axum", "reqwest"] }
uuid = { version = "1.11.0", features = ["serde", "v4", "fast-rng", "macro-diagnostics"] }