[package]
name = "elastik-core"
version = "7.2.0"
edition = "2021"
description = "Elastik V6 Engine: six verbs, one HTTP disk."
license = "MIT"
repository = "https://github.com/rangersui/Elastik"
homepage = "https://github.com/rangersui/Elastik"
[dependencies]
axum = { version = "0.7", default-features = false, features = ["http1", "tokio"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "signal", "sync", "time"] }
tokio-stream = { version = "0.1", features = ["sync"] }
futures-util = "0.3"
rusqlite = { version = "0.31", features = ["bundled"] }
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
base64 = "0.22"
percent-encoding = "2"
dashmap = "6"
[dev-dependencies]
tower = { version = "0.5", features = ["util"] }
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"
panic = "abort"
[[bin]]
name = "elastik-core"
path = "src/main.rs"