[package] name = "moonfire-nvr" version = "0.0.0" authors = ["Scott Lamb "] edition = "2021" resolver = "2" license-file = "../LICENSE.txt" rust-version = "1.70" publish = false [features] # The nightly feature is used within moonfire-nvr itself to gate the # benchmarks. Also pass it along to crates that can benefit from it. nightly = ["db/nightly"] # The bundled feature aims to make a single executable file that is deployable, # including statically linked libraries and embedded UI files. bundled = ["rusqlite/bundled", "bundled-ui"] bundled-ui = [] [workspace] members = ["base", "db"] [workspace.dependencies] nix = "0.26.1" tracing = { version = "0.1", features = ["log"] } rusqlite = "0.28.0" [dependencies] base = { package = "moonfire-base", path = "base" } base64 = "0.13.0" blake3 = "1.0.0" bpaf = { version = "0.9.1", features = ["autocomplete", "bright-color", "derive"]} bytes = "1" byteorder = "1.0" chrono = "0.4.23" cursive = { version = "0.20.0", default-features = false, features = ["termion-backend"] } db = { package = "moonfire-db", path = "db" } futures = "0.3" fnv = "1.0" h264-reader = "0.6.0" http = "0.2.3" http-serve = { version = "0.3.1", features = ["dir"] } hyper = { version = "0.14.2", features = ["http1", "server", "stream", "tcp"] } itertools = "0.10.0" libc = "0.2" log = { version = "0.4" } memchr = "2.0.2" nix = { workspace = true} nom = "7.0.0" password-hash = "0.4.2" protobuf = "3.0" reffers = "0.7.0" retina = "0.4.0" ring = "0.16.2" rusqlite = { workspace = true } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" smallvec = { version = "1.7", features = ["union"] } sync_wrapper = "0.1.0" time = "0.1" tokio = { version = "1.24", features = ["macros", "rt-multi-thread", "signal", "sync", "time"] } tokio-stream = "0.1.5" tokio-tungstenite = "0.18.0" toml = "0.5" tracing = { workspace = true } tracing-subscriber = { version = "0.3.16", features = ["env-filter", "json"] } tracing-core = "0.1.30" tracing-futures = { version = "0.2.5", features = ["futures-03", "std-future"] } tracing-log = "0.1.3" ulid = "1.0.0" url = "2.1.1" uuid = { version = "1.1.2", features = ["serde", "std", "v4"] } flate2 = "1.0.26" git-version = "0.3.5" [build-dependencies] blake3 = "1.0.0" fnv = "1.0" walkdir = "2.3.3" [dev-dependencies] mp4 = { git = "https://github.com/scottlamb/mp4-rust", branch = "moonfire" } num-rational = { version = "0.4.0", default-features = false, features = ["std"] } reqwest = { version = "0.11.0", default-features = false, features = ["json"] } tempfile = "3.2.0" tracing-test = "0.2.4" [profile.dev.package.scrypt] # On an Intel i3-6100U @ 2.30 GHz, a single scrypt password hash takes 7.6 # seconds at opt-level=0, or 0.096 seconds at opt-level=2. Always optimize this # crate to avoid seeming hung / being annoyingly slow when debugging. opt-level = 2 [profile.release] debug = 1 [profile.release-lto] inherits = "release" lto = true [profile.bench] debug = 1 [patch.crates-io] hashlink = { git = "https://github.com/scottlamb/hashlink", rev = "26715ca0efe3f1773a0a22bbde8e36cafcaaed52" }