mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 06:24:16 +00:00
Remove deprecated feature-names from Cargo.toml
files in examples (#3424)
This commit is contained in:
parent
1d8eb2add4
commit
8a17bef7d7
9 changed files with 9 additions and 9 deletions
|
@ -7,6 +7,6 @@ workspace = "../../../"
|
|||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
futures = "0.3"
|
||||
sqlx = { path = "../../../", features = [ "mysql", "runtime-tokio-native-tls" ] }
|
||||
sqlx = { path = "../../../", features = [ "mysql", "runtime-tokio", "tls-native-tls" ] }
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
tokio = { version = "1.20.0", features = ["rt", "macros"]}
|
||||
|
|
|
@ -8,7 +8,7 @@ edition = "2021"
|
|||
[dependencies]
|
||||
# Primary crates
|
||||
axum = { version = "0.5.13", features = ["macros"] }
|
||||
sqlx = { path = "../../../", features = ["runtime-tokio-rustls", "postgres", "time", "uuid"] }
|
||||
sqlx = { path = "../../../", features = [ "runtime-tokio", "tls-rustls-ring", "postgres", "time", "uuid" ] }
|
||||
tokio = { version = "1.20.1", features = ["rt-multi-thread", "macros"] }
|
||||
|
||||
# Important secondary crates
|
||||
|
|
|
@ -5,7 +5,7 @@ edition = "2021"
|
|||
workspace = "../../../"
|
||||
|
||||
[dependencies]
|
||||
sqlx = { path = "../../../", features = [ "postgres", "runtime-tokio-native-tls" ] }
|
||||
sqlx = { path = "../../../", features = [ "postgres", "runtime-tokio", "tls-native-tls" ] }
|
||||
futures = "0.3.1"
|
||||
tokio = { version = "1.20.0", features = [ "rt-multi-thread", "macros" ] }
|
||||
ratatui = "0.27.0"
|
||||
|
|
|
@ -7,6 +7,6 @@ edition = "2021"
|
|||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
sqlx = { path = "../../../", features = ["postgres", "runtime-tokio-native-tls"] }
|
||||
sqlx = { path = "../../../", features = [ "postgres", "runtime-tokio", "tls-native-tls" ] }
|
||||
tokio = { version = "1.20.0", features = ["rt", "macros"]}
|
||||
dotenvy = "0.15.0"
|
||||
|
|
|
@ -10,6 +10,6 @@ dotenvy = "0.15.0"
|
|||
futures = "0.3"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
sqlx = { path = "../../../", features = ["runtime-tokio", "postgres", "json"] }
|
||||
sqlx = { path = "../../../", features = [ "runtime-tokio", "postgres", "json" ] }
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
tokio = { version = "1.20.0", features = ["rt", "macros"]}
|
||||
|
|
|
@ -7,7 +7,7 @@ workspace = "../../../"
|
|||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
futures = "0.3"
|
||||
sqlx = { path = "../../../", features = ["postgres", "runtime-tokio-native-tls"] }
|
||||
sqlx = { path = "../../../", features = [ "postgres", "runtime-tokio", "tls-native-tls" ] }
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
tokio = { version = "1.20.0", features = ["rt", "macros"]}
|
||||
dotenvy = "0.15.0"
|
||||
|
|
|
@ -7,7 +7,7 @@ workspace = "../../../"
|
|||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
futures = "0.3"
|
||||
sqlx = { path = "../../../", features = ["postgres", "runtime-tokio-native-tls"] }
|
||||
sqlx = { path = "../../../", features = [ "postgres", "runtime-tokio", "tls-native-tls" ] }
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
tokio = { version = "1.20.0", features = ["rt", "macros"]}
|
||||
dotenvy = "0.15.0"
|
||||
|
|
|
@ -5,6 +5,6 @@ edition = "2021"
|
|||
workspace = "../../../"
|
||||
|
||||
[dependencies]
|
||||
sqlx = { path = "../../../", features = [ "postgres", "runtime-tokio-native-tls" ] }
|
||||
sqlx = { path = "../../../", features = [ "postgres", "runtime-tokio", "tls-native-tls" ] }
|
||||
futures = "0.3.1"
|
||||
tokio = { version = "1.20.0", features = ["rt-multi-thread", "macros"]}
|
||||
|
|
|
@ -7,6 +7,6 @@ workspace = "../../../"
|
|||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
futures = "0.3"
|
||||
sqlx = { path = "../../../", features = ["sqlite", "runtime-tokio-native-tls"] }
|
||||
sqlx = { path = "../../../", features = [ "sqlite", "runtime-tokio", "tls-native-tls" ] }
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
tokio = { version = "1.20.0", features = ["rt", "macros"]}
|
||||
|
|
Loading…
Reference in a new issue