mirror of
https://github.com/enso-org/enso.git
synced 2024-12-20 23:21:39 +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.
22 lines
502 B
TOML
22 lines
502 B
TOML
[package]
|
|
name = "wstest"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
base64 = "0.13.0"
|
|
clap = { workspace = true }
|
|
either = "1.7.0"
|
|
futures = { workspace = true }
|
|
enso-prelude = { path = "../../../lib/rust/prelude" }
|
|
regex = { workspace = true }
|
|
time = { version = "0.3", features = ["formatting"] }
|
|
tokio = { workspace = true }
|
|
tokio-stream = { version = "0.1.9", features = ["io-util"] }
|
|
url = "2.2"
|
|
websocket-lite = "0.5"
|
|
|
|
[lints]
|
|
workspace = true
|