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 --- crates/web/Cargo.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 crates/web/Cargo.toml (limited to 'crates/web/Cargo.toml') diff --git a/crates/web/Cargo.toml b/crates/web/Cargo.toml new file mode 100644 index 0000000..62a3504 --- /dev/null +++ b/crates/web/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "argonaut-web" +version = "0.1.0" +edition = "2021" + +[dependencies] +axum = "0.7.5" +tracing = { workspace = true } +tracing-subscriber = { workspace = true } +tokio = { workspace = true } +serde = { workspace = true } -- cgit v1.2.3