mirror of
https://github.com/actix/examples
synced 2024-11-23 14:31:07 +01:00
migrate to dotenvy
This commit is contained in:
parent
220b54c231
commit
07bb27eb4b
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -1572,7 +1572,7 @@ dependencies = [
|
||||
"anyhow",
|
||||
"apalis",
|
||||
"chrono",
|
||||
"dotenv",
|
||||
"dotenvy",
|
||||
"env_logger",
|
||||
"log",
|
||||
"rand 0.8.5",
|
||||
@ -2798,7 +2798,7 @@ version = "1.0.0"
|
||||
dependencies = [
|
||||
"actix-web",
|
||||
"diesel",
|
||||
"dotenv",
|
||||
"dotenvy",
|
||||
"env_logger",
|
||||
"log",
|
||||
"serde",
|
||||
@ -4292,7 +4292,7 @@ dependencies = [
|
||||
"actix-cors",
|
||||
"actix-web",
|
||||
"actix-web-lab",
|
||||
"dotenv",
|
||||
"dotenvy",
|
||||
"env_logger",
|
||||
"juniper",
|
||||
"log",
|
||||
@ -4901,7 +4901,7 @@ dependencies = [
|
||||
"actix-web-lab",
|
||||
"aws-config",
|
||||
"aws-sdk-s3",
|
||||
"dotenv",
|
||||
"dotenvy",
|
||||
"env_logger",
|
||||
"futures-util",
|
||||
"log",
|
||||
@ -4916,7 +4916,7 @@ version = "1.0.0"
|
||||
dependencies = [
|
||||
"actix-web",
|
||||
"derive_more",
|
||||
"dotenv",
|
||||
"dotenvy",
|
||||
"env_logger",
|
||||
"log",
|
||||
"mysql 24.0.0",
|
||||
@ -6852,7 +6852,7 @@ dependencies = [
|
||||
"chrono",
|
||||
"derive_more",
|
||||
"diesel",
|
||||
"dotenv",
|
||||
"dotenvy",
|
||||
"env_logger",
|
||||
"log",
|
||||
"once_cell",
|
||||
@ -7659,7 +7659,7 @@ dependencies = [
|
||||
"actix-files",
|
||||
"actix-session",
|
||||
"actix-web",
|
||||
"dotenv",
|
||||
"dotenvy",
|
||||
"env_logger",
|
||||
"log",
|
||||
"serde",
|
||||
|
@ -93,7 +93,7 @@ awc = "3.2"
|
||||
|
||||
chrono = { version = "0.4.20", default-features = false, features = ["clock", "serde"] }
|
||||
derive_more = "0.99.7"
|
||||
dotenv = "0.15"
|
||||
dotenvy = "0.15"
|
||||
env_logger = "0.10"
|
||||
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
||||
log = "0.4"
|
||||
|
@ -11,7 +11,7 @@ actix-web.workspace = true
|
||||
chrono.workspace = true
|
||||
derive_more.workspace = true
|
||||
diesel = { version = "2", features = ["postgres", "r2d2", "uuid", "chrono"] }
|
||||
dotenv = "0.15"
|
||||
dotenvy.workspace = true
|
||||
env_logger.workspace = true
|
||||
log = "0.4"
|
||||
once_cell = "1"
|
||||
|
@ -9,7 +9,7 @@ actix-web.workspace = true
|
||||
anyhow = "1"
|
||||
apalis = { version = "0.4", features = ["redis"] }
|
||||
chrono.workspace = true
|
||||
dotenv = "0.15"
|
||||
dotenvy.workspace = true
|
||||
env_logger.workspace = true
|
||||
log.workspace = true
|
||||
rand.workspace = true
|
||||
|
@ -8,7 +8,7 @@ actix-files.workspace = true
|
||||
actix-session = { workspace = true, features = ["cookie-session"] }
|
||||
actix-web.workspace = true
|
||||
|
||||
dotenv = "0.15"
|
||||
dotenvy.workspace = true
|
||||
env_logger.workspace = true
|
||||
log.workspace = true
|
||||
serde.workspace = true
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
[dependencies]
|
||||
actix-web.workspace = true
|
||||
diesel = { version = "2", features = ["sqlite", "r2d2"] }
|
||||
dotenv = "0.15"
|
||||
dotenvy.workspace = true
|
||||
env_logger.workspace = true
|
||||
log.workspace = true
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
[dependencies]
|
||||
actix-web.workspace = true
|
||||
derive_more.workspace = true
|
||||
dotenv = "0.15"
|
||||
dotenvy.workspace = true
|
||||
env_logger.workspace = true
|
||||
log.workspace = true
|
||||
mysql = "24"
|
||||
|
@ -11,7 +11,7 @@ actix-web-lab.workspace = true
|
||||
aws-config = "0.56"
|
||||
aws-sdk-s3 = "0.34"
|
||||
|
||||
dotenv = "0.15"
|
||||
dotenvy.workspace = true
|
||||
env_logger.workspace = true
|
||||
futures-util.workspace = true
|
||||
log.workspace = true
|
||||
|
@ -14,7 +14,7 @@ mysql = "24"
|
||||
r2d2 = "0.8"
|
||||
r2d2_mysql = "24"
|
||||
|
||||
dotenv = "0.15"
|
||||
dotenvy.workspace = true
|
||||
env_logger.workspace = true
|
||||
log.workspace = true
|
||||
uuid = { version = "1", features = ["v4", "serde"] }
|
||||
|
Loading…
Reference in New Issue
Block a user