diff options
Diffstat (limited to 'server/data/Cargo.toml')
-rw-r--r-- | server/data/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/server/data/Cargo.toml b/server/data/Cargo.toml new file mode 100644 index 00000000..5ba266a8 --- /dev/null +++ b/server/data/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "hurrycurry-data" +version = "0.1.0" +edition = "2024" + +[dependencies] +hurrycurry-protocol = { path = "../protocol" } +hurrycurry-locale = { path = "../locale" } +anyhow = "1.0.100" +serde_json = "1.0.145" +serde = { version = "1.0.225", features = ["derive"] } +shlex = "1.3.0" +clap = { version = "4.5.47", features = ["derive"] } +serde_yml = "0.0.12" + +[features] +fast_recipes = [] |