diff options
author | metamuffin <metamuffin@disroot.org> | 2024-12-25 23:13:12 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-12-25 23:13:12 +0100 |
commit | 6ca4b3377a08fa30a13835d59f9558419f7f5cd1 (patch) | |
tree | 711c5fd11a86a2f228f2f14912357f46ad7d7b73 /server/editor/Cargo.toml | |
parent | 31507963a05dffb3327b62dd54629420061d6c4d (diff) | |
download | hurrycurry-6ca4b3377a08fa30a13835d59f9558419f7f5cd1.tar hurrycurry-6ca4b3377a08fa30a13835d59f9558419f7f5cd1.tar.bz2 hurrycurry-6ca4b3377a08fa30a13835d59f9558419f7f5cd1.tar.zst |
editor save and play features
Diffstat (limited to 'server/editor/Cargo.toml')
-rw-r--r-- | server/editor/Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/editor/Cargo.toml b/server/editor/Cargo.toml index c8f15b0a..4c0fa307 100644 --- a/server/editor/Cargo.toml +++ b/server/editor/Cargo.toml @@ -12,10 +12,12 @@ 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" } +hurrycurry-client-lib = { path = "../client-lib", features = ["sync-network"] } |