From e52b8e1c2e110d0feb74feb7905c2ff064b51d55 Mon Sep 17 00:00:00 2001 From: UMTS at Teleco Date: Sat, 13 Dec 2025 02:48:13 +0100 Subject: committing to insanity --- Cargo.toml | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..a5527e6 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,47 @@ +[package] +name = "seckelapi" +version = "0.0.11" +edition = "2021" + +[dependencies] +# Web framework +axum = { version = "0.8", features = ["macros"] } +tokio = { version = "1.0", features = ["full"] } +tower = "0.5" +tower-http = { version = "0.6", features = ["cors", "trace", "limit"] } +tower_governor = "0.8" + +# Database +sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "mysql", "json", "chrono", "uuid", "rust_decimal"] } +rust_decimal = "1.0" + +# Serialization +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" + +# Configuration +toml = "0.9" + +# Authentication and security +bcrypt = "0.17" +uuid = { version = "1.0", features = ["v4", "serde"] } + +# Logging +tracing = "0.1" +tracing-subscriber = { version = "0.3", features = ["env-filter"] } + +# Date/time +chrono = { version = "0.4", features = ["serde"] } + +# Error handling +anyhow = "1.0" +thiserror = "2.0" + +# Network utilities for IP handling +ipnet = "2.9" + +# Additional utilities +async-trait = "0.1" +rand = "0.9" +base64 = "0.22" +regex = "1.10" \ No newline at end of file -- cgit v1.2.3-70-g09d2