nanobot/Cargo.toml

32 lines
930 B
TOML
Raw Normal View History

[package]
2023-09-11 23:43:57 +00:00
name = "nano"
version = "0.1.0"
edition = "2021"
description = "Discord bot to authenticate and de-anonymise users"
homepage = "https://github.com/supleed2/nanobot"
repository = "https://github.com/supleed2/nanobot"
license = "ISC"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-01-24 04:05:34 +00:00
anyhow = "1.0.79"
axum = "0.7.4"
2023-09-24 00:57:04 +00:00
indoc = "2.0.4"
2024-01-24 04:05:34 +00:00
poise = "0.6.1"
2024-02-02 17:14:46 +00:00
reqwest = { version = "0.11.24", features = ["json"] }
serde = { version = "1.0.196", features = ["derive"] }
shuttle-runtime = { version = "0.38.0", default-features = false }
shuttle-secrets = "0.38.0"
shuttle-shared-db = { version = "0.38.0", features = ["postgres", "sqlx"] }
sqlx = { version = "0.7.3", features = [
2023-09-24 00:57:04 +00:00
"macros",
"postgres",
"runtime-tokio-native-tls",
] }
2024-02-02 17:14:46 +00:00
tokio = "1.36.0"
2023-10-24 16:30:41 +00:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["time"] }
url = "2.5.0"