workspace dependencies

This commit is contained in:
Maieul BOYER 2026-02-08 18:19:56 +01:00
parent 6960959794
commit 299d62c252
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 = { version = "1.0.228", features = ["derive"] }
smol_str = { version = "0.3.5", features = ["serde"] }
tokio = { version = "1.49.0", features = ["full"] }

View file

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