2020-05-13 16:38:16 -04:00
|
|
|
[package]
|
|
|
|
name = "printerfacts"
|
2021-04-01 19:09:20 -04:00
|
|
|
version = "0.3.0"
|
2020-05-13 16:38:16 -04:00
|
|
|
authors = ["Christine Dodrill <me@christine.website>"]
|
|
|
|
edition = "2018"
|
2020-07-16 16:10:45 -04:00
|
|
|
build = "build.rs"
|
2021-05-22 17:29:40 -04:00
|
|
|
description = "Printer facts: The API"
|
2020-05-13 16:38:16 -04:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-07-09 18:19:03 -04:00
|
|
|
anyhow = "1"
|
2021-04-02 21:15:25 -04:00
|
|
|
hyper = "0.14"
|
2020-07-16 16:10:45 -04:00
|
|
|
lazy_static = "1.4"
|
|
|
|
mime = "0.3.0"
|
2020-05-15 09:16:16 -04:00
|
|
|
pfacts = "0.1.0"
|
2020-07-16 16:10:45 -04:00
|
|
|
prometheus = { version = "0.9", default-features = false, features = ["process"] }
|
2020-05-13 16:38:16 -04:00
|
|
|
rand = "0"
|
2020-07-09 18:19:03 -04:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2021-04-01 19:09:20 -04:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
tokio-stream = { version = "0.1.5", features = ["net"] }
|
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = "0.2"
|
|
|
|
warp = "0.3"
|
2020-07-16 16:10:45 -04:00
|
|
|
|
|
|
|
[build-dependencies]
|
2021-04-02 21:16:16 -04:00
|
|
|
ructe = { version = "0", features = ["warp03"] }
|