diff options
author | tcmal <me@aria.rip> | 2024-09-08 18:46:42 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-09-08 18:46:42 +0100 |
commit | ddc97e9361137fde6f0894ffa729d285159662fa (patch) | |
tree | 33f3f54a70a732374312ebde8b0b56a7e8cae1a1 /crates/web/Cargo.toml |
Add web crate based on axum
Diffstat (limited to 'crates/web/Cargo.toml')
-rw-r--r-- | crates/web/Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
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 } |