2018-03-04 15:24:24 -05:00
|
|
|
[package]
|
|
|
|
name = "moonfire-base"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
|
|
|
readme = "../README.md"
|
2023-01-28 14:59:21 -05:00
|
|
|
edition = "2021"
|
2021-02-17 16:28:48 -05:00
|
|
|
license-file = "../../LICENSE.txt"
|
2018-03-04 15:24:24 -05:00
|
|
|
|
|
|
|
[features]
|
|
|
|
nightly = []
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-04 23:42:15 -04:00
|
|
|
chrono = "0.4.23"
|
2018-03-04 15:24:24 -05:00
|
|
|
failure = "0.1.1"
|
2021-09-23 18:55:53 -04:00
|
|
|
futures = "0.3"
|
2018-03-04 15:24:24 -05:00
|
|
|
libc = "0.2"
|
2021-08-31 16:04:26 -04:00
|
|
|
nom = "7.0.0"
|
2021-04-21 13:44:01 -04:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2021-09-23 18:55:53 -04:00
|
|
|
slab = "0.4"
|
2018-03-04 15:24:24 -05:00
|
|
|
time = "0.1"
|
2023-02-16 02:14:54 -05:00
|
|
|
tracing = "0.1.37"
|
2023-07-04 23:42:15 -04:00
|
|
|
tracing-core = "0.1.30"
|
|
|
|
tracing-log = "0.1.3"
|
|
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "json"] }
|