zer0bin/backend/Cargo.toml

37 lines
711 B
TOML
Raw Normal View History

2022-02-28 21:10:02 +00:00
[package]
name = "backend"
2022-04-04 17:42:04 +00:00
version = "1.1.1"
2022-03-20 01:36:19 +00:00
edition = "2021"
2022-02-28 21:10:02 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-03-21 01:09:56 +00:00
serde = { version = "1.0", features = ["derive"] }
2022-02-28 21:10:02 +00:00
serde_json = "1.0"
actix-rt = "2.6.0"
actix-web = "4.0.0-rc.1"
actix-cors = "0.6.0"
2022-03-04 14:19:29 +00:00
actix-governor = "0.3.0"
2022-02-28 21:10:02 +00:00
2022-03-22 21:37:53 +00:00
badge-maker = "0.2.1"
sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres", "chrono"] }
2022-02-28 21:10:02 +00:00
chrono = { version = "0.4.19", features = ["serde"] }
nanoid = "0.4.0"
2022-02-28 22:09:16 +00:00
[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = true
opt-level = 3
panic = "abort"
2022-03-14 12:33:55 +00:00
debug-assertions = false
[[bin]]
name = "zer0bin-bin"
path = "src/main.rs"