[package]
edition = "2021"
name = "elastik-core"
version = "8.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Elastik — Audi-ted L5 storage engine. SQLite for files."
homepage = "https://github.com/rangersui/Elastik"
readme = false
license = "MIT"
repository = "https://github.com/rangersui/Elastik"
[package.metadata.docs.rs]
features = ["unstable-engine"]
all-features = false
[features]
bundled-sqlite = ["rusqlite/bundled"]
default = [
"bundled-sqlite",
"unstable-engine",
]
unstable-engine = ["dep:tracing"]
[lib]
name = "elastik_core"
path = "src/lib.rs"
[dependencies.bytes]
version = "1"
[dependencies.dashmap]
version = "6"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.percent-encoding]
version = "2"
[dependencies.rusqlite]
version = "0.31"
default-features = false
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
optional = true
[profile.release]
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "symbols"
[profile.rut241]
opt-level = "z"
lto = "fat"
codegen-units = 1
panic = "abort"
inherits = "release"
strip = "symbols"