1
0
Fork 0

Publish shitty code

This commit is contained in:
Honbra 2024-01-30 19:27:14 +01:00
commit 2e36ee2758
Signed by: honbra
GPG key ID: B61CC9ADABE2D952
24 changed files with 2845 additions and 0 deletions

26
Cargo.toml Normal file
View file

@ -0,0 +1,26 @@
[package]
name = "ncpn"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = { version = "0.6.20", default-features = false, features = ["http1", "json", "macros", "matched-path", "tokio", "tower-log", "tracing"] }
eyre = "0.6.8"
figment = { version = "0.10.11", features = ["env", "toml"] }
http = "0.2.9"
serde = { version = "1.0.189", features = ["derive"] }
sqlx = { version = "0.7.3", features = ["runtime-tokio", "postgres", "uuid"] }
thiserror = "1.0.51"
tokio = { version = "1.33.0", features = ["rt-multi-thread", "macros"] }
tower-http = { version = "0.4.4", features = ["trace"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
ulid = { version = "1.1.0", features = ["uuid", "serde"] }
url = { version = "2.5.0", features = ["serde"] }
uuid = "1.7.0"
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"