This commit is contained in:
xfy
2024-09-06 17:39:40 +08:00
commit c90e4e0dc1
6 changed files with 18 additions and 0 deletions

0
README.md Normal file
View File

1
web/Bunjs/elysia Submodule

Submodule web/Bunjs/elysia added at de891a6187

1
web/Rust/axum/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
target/

7
web/Rust/axum/Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "axum"
version = "0.1.0"

6
web/Rust/axum/Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "axum"
version = "0.1.0"
edition = "2021"
[dependencies]

View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}