移除无用feature声明
This commit is contained in:
parent
0c629764a8
commit
c837466536
13
Cargo.lock
generated
13
Cargo.lock
generated
@ -1921,7 +1921,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"
|
checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"ring",
|
|
||||||
"rustls-pki-types",
|
"rustls-pki-types",
|
||||||
"rustls-webpki",
|
"rustls-webpki",
|
||||||
"subtle",
|
"subtle",
|
||||||
@ -2265,8 +2264,6 @@ dependencies = [
|
|||||||
"once_cell",
|
"once_cell",
|
||||||
"paste",
|
"paste",
|
||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
"rustls",
|
|
||||||
"rustls-pemfile",
|
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"sha2",
|
"sha2",
|
||||||
@ -2278,7 +2275,6 @@ dependencies = [
|
|||||||
"tracing",
|
"tracing",
|
||||||
"url",
|
"url",
|
||||||
"uuid",
|
"uuid",
|
||||||
"webpki-roots",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -3131,15 +3127,6 @@ dependencies = [
|
|||||||
"wasm-bindgen",
|
"wasm-bindgen",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "webpki-roots"
|
|
||||||
version = "0.26.3"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd"
|
|
||||||
dependencies = [
|
|
||||||
"rustls-pki-types",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "whoami"
|
name = "whoami"
|
||||||
version = "1.5.1"
|
version = "1.5.1"
|
||||||
|
4
app.toml
4
app.toml
@ -20,8 +20,8 @@ expires = 1800
|
|||||||
refresh_expires = 3600
|
refresh_expires = 3600
|
||||||
|
|
||||||
[redis]
|
[redis]
|
||||||
# url = "47.95.198.7:33000"
|
url = "47.95.198.7:33000"
|
||||||
url = "127.0.0.1:33001"
|
# url = "127.0.0.1:33001"
|
||||||
password = "3aB7kRt9pDf1nQzW"
|
password = "3aB7kRt9pDf1nQzW"
|
||||||
db = 0
|
db = 0
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ edition = "2021"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { workspace = true, features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json = { workspace = true }
|
serde_json = { workspace = true }
|
||||||
sqlx = { workspace = true, features = ["postgres", "uuid", "macros", "sqlx-macros", "chrono"] }
|
sqlx = { workspace = true, features = ["postgres", "uuid", "macros", "sqlx-macros", "chrono", "runtime-tokio", "json"] }
|
||||||
validator = { workspace = true, features = ["derive"] }
|
validator = { workspace = true, features = ["derive"] }
|
||||||
chrono = { workspace = true, features = ["serde"]}
|
chrono = { workspace = true, features = ["serde"]}
|
||||||
tracing = { workspace = true }
|
tracing = { workspace = true }
|
||||||
|
@ -11,7 +11,7 @@ tracing = { workspace = true }
|
|||||||
tracing-appender = { workspace = true }
|
tracing-appender = { workspace = true }
|
||||||
tracing-subscriber = { workspace = true, features = ["json"] }
|
tracing-subscriber = { workspace = true, features = ["json"] }
|
||||||
chrono = { workspace = true }
|
chrono = { workspace = true }
|
||||||
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "macros", "json"] }
|
sqlx = { workspace = true }
|
||||||
sqlx-postgres = { workspace = true, features = ["json"] }
|
sqlx-postgres = { workspace = true, features = ["json"] }
|
||||||
axum = { workspace = true }
|
axum = { workspace = true }
|
||||||
axum-extra = { workspace = true }
|
axum-extra = { workspace = true }
|
||||||
|
Loading…
Reference in New Issue
Block a user