-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 1.03 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "ruuvitag_exporter"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["time", "sync", "rt", "macros", "rt-multi-thread"] }
tokio-stream = { version = "0.1", default-features = false }
ruuvi-sensor-protocol = { version = "0.6.0", default-features = false }
prometheus = { version = "0.13", default-features = false }
lazy_static = "1.4"
# hyper = { version = "0.14", features = ["server", "http1", "runtime", "backports", "deprecated"]}
hyper = { version = "1", features = ["http1", "server"]}
hyper-util = { version = "0.1", features = ["tokio"] }
http-body-util = "0.1"
tracing = { version = "0.1", default-features = true }
tracing-subscriber = { version= "0.3", default-features= true}
zbus = { version = "4", default-features = false, features = ["tokio"] }
#futures-lite = "*"
futures = { version = "*", default-features = false }
[profile.release]
strip = true
lto = true
codegen-units = 1