mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 08:08:34 +03:00
96d17d2f3f
Now that the clap has fixed [issue](https://github.com/clap-rs/clap/issues/5407) that blocked us, we can bump it across all our crates. Fixes #5168.
18 lines
448 B
TOML
18 lines
448 B
TOML
[package]
|
|
name = "logstat"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
enso-prelude = { path = "../../../lib/rust/prelude" }
|
|
regex = { workspace = true }
|
|
time = { version = "0.3", features = ["formatting", "parsing"] }
|
|
tokio = { workspace = true }
|
|
tokio-stream = { version = "0.1.9", features = ["io-util"] }
|
|
|
|
[lints]
|
|
workspace = true
|