cryptgeon/packages/backend/Cargo.toml

28 lines
559 B
TOML
Raw Normal View History

2021-05-01 12:39:40 +02:00
[package]
name = "cryptgeon"
2024-09-27 21:59:39 +02:00
version = "2.8.3"
2021-05-01 12:39:40 +02:00
authors = ["cupcakearmy <hi@nicco.io>"]
2022-01-02 23:46:08 +01:00
edition = "2021"
2024-08-22 18:42:44 +02:00
rust-version = "1.80"
2021-05-01 12:39:40 +02:00
2021-05-02 13:53:48 +02:00
[[bin]]
name = "cryptgeon"
path = "src/main.rs"
2021-05-01 12:39:40 +02:00
[dependencies]
2024-08-23 14:27:47 +02: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 12:39:40 +02:00
serde_json = "1"
lazy_static = "1"
ring = "0.16"
2021-05-02 03:07:08 +02:00
bs62 = "0.1"
2021-12-20 17:42:30 +01:00
byte-unit = "4"
2021-12-21 00:15:04 +01:00
dotenv = "0.15"