blob: a4fb8bc2ec6b3c71602b393cf4a81a75f1c000b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[package]
name = "hurrycurry-editor"
version = "0.1.0"
edition = "2024"
[dependencies]
tokio = { version = "1.47.1", features = ["full"] }
serde_json = "1.0.145"
log = "0.4.28"
env_logger = "0.11.8"
anyhow = "1.0.99"
tokio-tungstenite = { version = "0.27.0", features = [
"rustls-tls-native-roots",
] }
serde = { version = "1.0.225", features = ["derive"] }
rustls = { version = "0.23.31", features = ["ring"] }
clap = { version = "4.5.47", features = ["derive"] }
futures-util = "0.3.31"
shlex = "1.3.0"
serde_yml = "0.0.12"
hurrycurry-protocol = { path = "../protocol" }
hurrycurry-client-lib = { path = "../client-lib", features = ["sync-network"] }
|