-
- Downloads
Add basic http authentification
Showing
- Cargo.lock 52 additions, 35 deletionsCargo.lock
- Cargo.toml 3 additions, 1 deletionCargo.toml
- README.md 2 additions, 2 deletionsREADME.md
- examples/default-config.toml 3 additions, 0 deletionsexamples/default-config.toml
- src/bin/sms-gateway.rs 30 additions, 3 deletionssrc/bin/sms-gateway.rs
- src/config.rs 17 additions, 2 deletionssrc/config.rs
- src/errors.rs 4 additions, 0 deletionssrc/errors.rs
... | ... | @@ -2,7 +2,7 @@ |
name = "sms-gateway" | ||
description = "A http frontend for SMS Server Tools 3" | ||
authors = ["David Huss <david.huss@hfbk-hamburg.de>"] | ||
version = "0.4.4" | ||
version = "0.5.0" | ||
edition = "2021" | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
... | ... | @@ -27,3 +27,5 @@ reqwest = { version = "0.11", features = ["json", "blocking"] } |
# Needed for cross compilation | ||
openssl = { version = "0.10.29", features = ["vendored"] } | ||
serde_regex = "1.1.0" | ||
actix-web-httpauth = "0.8.0" | ||
rand = "0.8.5" |
Please register or sign in to comment