[package] name = "kochab" version = "0.3.1" authors = ["Emii Tatsuo ", "panicbit "] edition = "2018" license = "Hippocratic 2.1" description = "Ergonomic Gemini SDK" repository = "https://github.com/Alch-Emi/kochab" [features] user_management = ["sled", "bincode", "serde/derive", "crc32fast"] user_management_advanced = ["rust-argon2", "ring", "user_management"] user_management_routes = ["user_management"] default = ["serve_dir"] serve_dir = ["mime_guess", "tokio/fs"] ratelimiting = ["dashmap"] [dependencies] anyhow = "1.0.33" rustls = { version = "0.18.1", features = ["dangerous_configuration"] } tokio-rustls = "0.20.0" tokio = { version = "0.3.1", features = ["io-util","net","time", "rt"] } mime = "0.3.16" uriparse = "0.6.3" percent-encoding = "2.1.0" log = "0.4.11" webpki = "0.21.0" lazy_static = "1.4.0" mime_guess = { version = "2.0.3", optional = true } dashmap = { version = "3.11.10", optional = true } sled = { version = "0.34.6", optional = true } bincode = { version = "1.3.1", optional = true } serde = { version = "1.0", optional = true } rust-argon2 = { version = "0.8.2", optional = true } crc32fast = { version = "1.2.1", optional = true } ring = { version = "0.16.15", optional = true } [dev-dependencies] env_logger = "0.8.1" tokio = { version = "0.3.1", features = ["macros", "rt-multi-thread", "sync"] } [[example]] name = "user_management" required-features = ["user_management_routes"] [[example]] name = "serve_dir" required-features = ["serve_dir"] [[example]] name = "ratelimiting" required-features = ["ratelimiting"]