2023-09-09 20:54:17 +00:00
|
|
|
[package]
|
2023-09-11 23:43:57 +00:00
|
|
|
name = "nano"
|
2023-09-09 20:54:17 +00:00
|
|
|
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]
|
2023-09-11 23:43:57 +00:00
|
|
|
anyhow = "1.0.75"
|
2023-09-24 00:57:04 +00:00
|
|
|
axum = "0.6.20"
|
|
|
|
indoc = "2.0.4"
|
|
|
|
poise = "0.5.6"
|
|
|
|
reqwest = { version = "0.11.20", features = ["json"] }
|
|
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
2023-09-29 00:48:12 +00:00
|
|
|
shuttle-runtime = { version = "0.27.0", default-features = false }
|
2023-09-24 00:57:04 +00:00
|
|
|
shuttle-secrets = "0.27.0"
|
|
|
|
shuttle-shared-db = { version = "0.27.0", features = ["postgres"] }
|
2023-09-29 00:06:37 +00:00
|
|
|
sqlx = { version = "0.7.2", features = [
|
2023-09-24 00:57:04 +00:00
|
|
|
"macros",
|
|
|
|
"postgres",
|
|
|
|
"runtime-tokio-native-tls",
|
|
|
|
] }
|
|
|
|
tokio = "1.32.0"
|
2023-09-29 00:06:37 +00:00
|
|
|
tracing = "0.1.37"
|
2023-09-29 00:48:12 +00:00
|
|
|
tracing-subscriber = { version = "0.3.17", features = ["time"] }
|
2023-09-24 00:57:04 +00:00
|
|
|
url = "2.4.1"
|