mara/Cargo.toml

50 lines
885 B
TOML

[package]
name = "mara"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.4"
axum-macros = "0.1"
axum-extra = "0.1"
base64 = "0.13"
color-eyre = "0.6"
futures = "0.3"
irc = "0.15.0"
serde_json = "1"
serde_yaml = "0.8"
tracing = "0.1"
tracing-futures = "0.2"
tracing-log = "0.1"
tracing-subscriber = "0.2"
[dependencies.rusqlite]
version = "0.26"
features = [ "bundled", "uuid", "serde_json", "chrono" ]
[dependencies.serde]
version = "1"
features = [ "derive" ]
[dependencies.reqwest]
version = "0.11"
features = [ "json" ]
[dependencies.tokio]
version = "1"
features = [ "full" ]
[dependencies.tower]
version = "0.4"
features = [ "full" ]
[dependencies.tower-http]
version = "0.2"
features = [ "full" ]
[dependencies.uuid]
version = "0.8"
features = [ "serde", "v4" ]