feat(init): init service for testing log lib

This commit is contained in:
2026-01-22 21:10:12 +08:00
commit 790ca51f92
7 changed files with 2297 additions and 0 deletions

16
Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "order-service"
version = "0.1.0"
edition = "2024"
[dependencies]
# rust_logger = { git = "ssh://git@gitea.shay7sev.site:2222/admin/rust_logger.git", tag = "v0.1.0" }
rust_logger = { version = "0.1.0", registry = "kellnr" }
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.8.6", features = [
"postgres",
"runtime-tokio-native-tls",
] }
dotenv = "0.15"
uuid = { version = "1.0", features = ["v4"] }
anyhow = "1.0.100"