mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-11-01 04:44:16 +01:00
28 lines
559 B
TOML
28 lines
559 B
TOML
[package]
|
|
name = "cryptgeon"
|
|
version = "2.8.0"
|
|
authors = ["cupcakearmy <hi@nicco.io>"]
|
|
edition = "2021"
|
|
rust-version = "1.80"
|
|
|
|
[[bin]]
|
|
name = "cryptgeon"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# 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
|
|
serde_json = "1"
|
|
lazy_static = "1"
|
|
ring = "0.16"
|
|
bs62 = "0.1"
|
|
byte-unit = "4"
|
|
dotenv = "0.15"
|