2022-02-19 16:10:02 +00:00
|
|
|
[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]
|
2022-02-19 19:03:04 +00:00
|
|
|
axum = "0.4"
|
|
|
|
axum-macros = "0.1"
|
|
|
|
axum-extra = "0.1"
|
|
|
|
base64 = "0.13"
|
2022-02-19 16:10:02 +00:00
|
|
|
color-eyre = "0.6"
|
2022-02-19 19:03:04 +00:00
|
|
|
futures = "0.3"
|
|
|
|
irc = "0.15.0"
|
2022-02-19 16:10:02 +00:00
|
|
|
serde_json = "1"
|
2022-02-19 19:03:04 +00:00
|
|
|
serde_yaml = "0.8"
|
2022-02-19 16:10:02 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-futures = "0.2"
|
|
|
|
tracing-log = "0.1"
|
|
|
|
tracing-subscriber = "0.2"
|
|
|
|
|
2022-02-19 19:03:04 +00:00
|
|
|
[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" ]
|