Initial project setup (rust)

This commit is contained in:
ufo6849
2026-03-19 20:17:42 +09:00
parent c008ef855b
commit 6a6d2321d0
7 changed files with 219 additions and 0 deletions

10
Cargo.toml Normal file
View File

@@ -0,0 +1,10 @@
[package]
name = "test-rust2"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = "4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }