From ddc97e9361137fde6f0894ffa729d285159662fa Mon Sep 17 00:00:00 2001 From: tcmal Date: Sun, 8 Sep 2024 18:46:42 +0100 Subject: Add web crate based on axum --- Cargo.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..b90f2bb --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,12 @@ +[workspace] +resolver = "2" +members = [ + "crates/web" +] + +[workspace.dependencies] +tracing = "0.1.40" +tracing-subscriber = { version = "0.3.18", default-features = false, features = ["std", "fmt"] } +tokio = { version = "1.40.0", features = ["rt"] } +serde = "1.0.0" +serde_json = "1.0.0" -- cgit v1.2.3