31 lines
630 B
TOML
31 lines
630 B
TOML
[package]
|
|
name = "videoprobe"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
[profile.dev]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|
|
panic = "abort"
|
|
|
|
[dependencies]
|
|
byte-unit = "4.0.18"
|
|
chrono = "0.4.24"
|
|
clap = { version = "4.1.6", features = ["derive", "string", "unicode"] }
|
|
gpsd_proto = "0.7.0"
|
|
rocket = { version = "0.5.0-rc.1", features = ["json"] }
|
|
serde_json = "1.0.94"
|
|
tokio = { version = "1.26.0", features = ["full"] }
|
|
tracing = "0.1.37"
|
|
tracing-appender = "0.2.2"
|
|
tracing-subscriber = "0.3.16"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
reqwest = "0.11.22"
|
|
local-ip-address = "0.5.6"
|
|
|
|
[features]
|
|
rtt = []
|
|
throughput = []
|