feat: init commit

This commit is contained in:
2024-04-19 00:06:20 +08:00
parent 1930e45c47
commit 0518ab4922
2 changed files with 26 additions and 0 deletions

23
Cargo.toml Normal file
View File

@@ -0,0 +1,23 @@
[package]
name = "ipset-management"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7"
env_logger = "0.11"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.37", features = ["full"] }
[profile.release]
codegen-units = 1
opt-level = 'z'
lto = true
panic = 'abort'
strip = true

3
src/main.rs Normal file
View File

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