From dd96c79d87ffe5b865c10ddef555157425d2858f Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Fri, 1 Nov 2024 18:13:22 -0400 Subject: Update --- Cargo.toml | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index a46cab2..ea00056 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -edition = "2018" +edition = "2021" name = "august-offensive" version = "0.2.3" authors = ["Kevin J Hoerr "] @@ -8,21 +8,24 @@ license = "ISC" readme = "README.md" repository = "https://github.com/kjhoerr/august-offensive.git" +[lints.rust] +unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } + [[bin]] name = "august-offensive" path = "src/main.rs" [dependencies] -dotenv = "0.14" -log = "0.4" -env_logger = "0.7" -anyhow = "1.0" +dotenvy = "*" +log = "*" +env_logger = "*" -diesel = { version = "1.4.3", features = ["postgres"] } +diesel = { version = "2", features = ["postgres", "r2d2", "uuid"] } -actix-rt = "0.2.5" -actix-web = "1.0.8" -actix-diesel = "0.3.0" -serde = "1.0" -serde_json = "1.0" -serde_derive = "1.0" +actix-web = "4" +actix-rt = "*" +bytes = "*" +serde = "*" +serde_json = "*" +serde_derive = "*" +uuid = "*" -- cgit