1
0
mirror of https://github.com/actix/examples synced 2025-06-26 17:17:42 +02:00

refactor: use confik instead of config

This commit is contained in:
Rob Ede
2024-07-07 02:01:13 +01:00
parent 03879899a5
commit 0bdd5479ff
14 changed files with 322 additions and 477 deletions

View File

@ -3,13 +3,13 @@ name = "db-sqlite"
version = "1.0.0"
edition = "2021"
# Do not use workspace deps as they this package isn't part of the workspace.
[dependencies]
actix-web.workspace = true
env_logger.workspace = true
futures-util.workspace = true
log.workspace = true
actix-web = "4"
env_logger = "0.11"
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
log = "0.4"
r2d2 = "0.8"
r2d2_sqlite = "0.22"
rusqlite = "0.29"
serde.workspace = true
r2d2_sqlite = "0.24"
rusqlite = "0.31"
serde = { version = "1", features = ["derive"] }