Initial commit

This commit is contained in:
2022-01-09 16:35:39 +01:00
commit 741f63c0af
7 changed files with 557 additions and 0 deletions

21
Cargo.toml Normal file
View File

@ -0,0 +1,21 @@
[package]
name = "smartrelease"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = { version = "3.3", features = ["rustls"] }
dotenv = "0.15"
env_logger = "0.9"
lazy_static = "1.4"
log = "0.4"
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[profile.release]
lto = true
panic = "abort"
opt-level = "z"