[package] name = "hurrycurry-editor" version = "0.1.0" edition = "2024" [dependencies] tokio = { version = "1.40.0", features = ["full"] } serde_json = "1.0.128" log = "0.4.22" env_logger = "0.11.5" anyhow = "1.0.89" tokio-tungstenite = { version = "0.24.0", features = [ "rustls-tls-native-roots", ] } serde = { version = "1.0.216", features = ["derive"] } rustls = { version = "0.23.13", features = ["ring"] } clap = { version = "4.5.23", 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"] }