clarify licenses and add cargo deny

This commit is contained in:
Sebastian Hugentobler 2024-05-20 12:00:39 +02:00
parent bdd4c935a3
commit a5aa57148f
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
6 changed files with 926 additions and 183 deletions

View file

@ -2,13 +2,16 @@
name = "alert-me"
version = "0.1.0"
edition = "2021"
license = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
[dependencies]
entity = { path = "../entity" }
migration = { path = "../migration" }
ciborium = "0.2.2"
clap = { version = "4.5.4", features = ["derive"] }
config = "0.14.0"
config = { version = "0.14.0", default-features = false, features = [ "toml" ] }
futures = "0.3.30"
itertools = "0.13.0"
reqwest = { version = "0.12.4", features = ["json", "rustls-tls"], default-features = false }