cryptgeon/packages/backend/Cargo.toml

28 lines
559 B
TOML
Raw Normal View History

2021-05-01 10:39:40 +00:00
[package]
name = "cryptgeon"
2024-08-22 18:01:14 +00:00
version = "2.7.0"
2021-05-01 10:39:40 +00:00
authors = ["cupcakearmy <hi@nicco.io>"]
2022-01-02 22:46:08 +00:00
edition = "2021"
2024-08-22 16:42:44 +00:00
rust-version = "1.80"
2021-05-01 10:39:40 +00:00
2021-05-02 11:53:48 +00:00
[[bin]]
name = "cryptgeon"
path = "src/main.rs"
2021-05-01 10:39:40 +00:00
[dependencies]
2024-08-23 12:27:47 +00:00
# Core
axum = "0.7.5"
serde = { version = "1.0.208", features = ["derive"] }
tokio = { version = "1.39.3", features = ["full"] }
tower = "0.5.0"
tower-http = { version = "0.5.2", features = ["full"] }
redis = { version = "0.25.2", features = ["tls-native-tls"] }
# Utility
2021-05-01 10:39:40 +00:00
serde_json = "1"
lazy_static = "1"
ring = "0.16"
2021-05-02 01:07:08 +00:00
bs62 = "0.1"
2021-12-20 16:42:30 +00:00
byte-unit = "4"
2021-12-20 23:15:04 +00:00
dotenv = "0.15"