2020-05-13 20:38:16 +00:00
|
|
|
[package]
|
|
|
|
name = "printerfacts"
|
2020-07-16 20:10:45 +00:00
|
|
|
version = "0.2.0"
|
2020-05-13 20:38:16 +00:00
|
|
|
authors = ["Christine Dodrill <me@christine.website>"]
|
|
|
|
edition = "2018"
|
2020-07-16 20:10:45 +00:00
|
|
|
build = "build.rs"
|
2020-05-13 20:38:16 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-07-09 22:19:03 +00:00
|
|
|
anyhow = "1"
|
2020-07-16 20:10:45 +00:00
|
|
|
lazy_static = "1.4"
|
2020-07-09 21:07:01 +00:00
|
|
|
log = "0"
|
2020-07-16 20:10:45 +00:00
|
|
|
mime = "0.3.0"
|
2020-05-15 13:16:16 +00:00
|
|
|
pfacts = "0.1.0"
|
2020-07-09 21:07:01 +00:00
|
|
|
pretty_env_logger = "0"
|
2020-07-16 20:10:45 +00:00
|
|
|
prometheus = { version = "0.9", default-features = false, features = ["process"] }
|
2020-05-13 20:38:16 +00:00
|
|
|
rand = "0"
|
2020-07-09 22:19:03 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2020-05-13 20:38:16 +00:00
|
|
|
tokio = { version = "0.2", features = ["macros"] }
|
|
|
|
warp = "0.2"
|
2020-07-16 20:10:45 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
ructe = { version = "0.11", features = ["warp02"] }
|