workspace dependencies

This commit is contained in:
Maieul BOYER 2026-02-08 18:19:56 +01:00
parent 6960959794
commit d9fafa1db6
Signed by: maix
SSH key fingerprint: SHA256:iqCzqFFF5KjRixmDExqbAltCIj9ndlBWIGJf3t9Ln9g
6 changed files with 141 additions and 4 deletions

View file

@ -2,5 +2,10 @@
name = "froxy-server"
version = "0.1.0"
edition = "2024"
publish = false
[dependencies]
axum = "0.8.8"
serde = { workspace = true }
smol_str = { workspace = true }
tokio = { workspace = true }

View file

@ -1,3 +1,4 @@
fn main() {
#[tokio::main]
async fn main() {
println!("Hello, world!");
}