24 lines
No EOL
796 B
TOML
24 lines
No EOL
796 B
TOML
[package]
|
|
name = "metagame"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.28", features = ["full"] }
|
|
axum = { version = "0.6", features = ["json", "macros"] }
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
openssl = { version = "0.10", features = ["vendored"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tower-http = { version = "0.4", features = ["trace"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
lazy_static = "1.4"
|
|
serde-aux = "4"
|
|
bincode = "1.3"
|
|
r2d2_sqlite = "0.22"
|
|
r2d2 = "0.8"
|
|
rusqlite = { version = "0.29.0", features = ["bundled"] } |