moonfire-nvr/server/base/Cargo.toml
2025-04-04 09:23:10 -07:00

38 lines
998 B
TOML

[package]
name = "moonfire-base"
version = "0.0.0"
authors = ["Scott Lamb <slamb@slamb.org>"]
readme = "../README.md"
edition = "2021"
license-file = "../../LICENSE.txt"
publish = false
rust-version = "1.82"
[features]
mimalloc = ["dep:libmimalloc-sys"]
nightly = []
[lib]
path = "lib.rs"
[dependencies]
ahash = "0.8"
coded = { git = "https://github.com/scottlamb/coded", rev = "2c97994974a73243d5dd12134831814f42cdb0e8" }
futures = "0.3"
jiff = { workspace = true }
libc = "0.2"
libmimalloc-sys = { git = "https://github.com/scottlamb/mimalloc_rust", branch = "musl-fix", features = [
"override",
"extended",
], optional = true }
nix = { workspace = true, features = ["time"] }
nom = "7.0.0"
rusqlite = { workspace = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
slab = "0.4"
tracing = { workspace = true }
tracing-core = { workspace = true }
tracing-log = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter", "json"] }