mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2024-12-27 15:45:55 -05:00
30 lines
569 B
TOML
30 lines
569 B
TOML
[package]
|
|
name = "moonfire-base"
|
|
version = "0.0.1"
|
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
|
readme = "../README.md"
|
|
edition = "2021"
|
|
license-file = "../../LICENSE.txt"
|
|
publish = false
|
|
|
|
[features]
|
|
nightly = []
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.23"
|
|
failure = "0.1.1"
|
|
futures = "0.3"
|
|
libc = "0.2"
|
|
nom = "7.0.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
slab = "0.4"
|
|
time = "0.1"
|
|
tracing = "0.1.37"
|
|
tracing-core = "0.1.30"
|
|
tracing-log = "0.1.3"
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "json"] }
|