2022-07-22 17:12:52 +03:00
|
|
|
[package]
|
|
|
|
name = "logstat"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-03 14:32:03 +03:00
|
|
|
clap = { workspace = true }
|
2023-01-28 01:39:37 +03:00
|
|
|
lazy_static = { workspace = true }
|
2022-07-22 17:12:52 +03:00
|
|
|
enso-prelude = { path = "../../../lib/rust/prelude" }
|
2023-01-27 03:09:09 +03:00
|
|
|
regex = { workspace = true }
|
2022-07-22 17:12:52 +03:00
|
|
|
time = { version = "0.3", features = ["formatting", "parsing"] }
|
2022-10-11 00:38:48 +03:00
|
|
|
tokio = { workspace = true }
|
2022-07-22 17:12:52 +03:00
|
|
|
tokio-stream = { version = "0.1.9", features = ["io-util"] }
|
2024-03-25 02:45:55 +03:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|