mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-17 15:51:23 +01:00
sort keys in Cargo.toml
This commit is contained in:
parent
c27fc4e177
commit
daf7b1e678
1 changed files with 40 additions and 46 deletions
86
Cargo.toml
86
Cargo.toml
|
|
@ -22,67 +22,61 @@ rust-version = "1.75.0"
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
||||||
|
# Keep sorted
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
async-trait = "0.1.68"
|
||||||
axum = { version = "0.6.18", default-features = false, features = ["form", "headers", "http1", "http2", "json", "matched-path"] }
|
axum = { version = "0.6.18", default-features = false, features = ["form", "headers", "http1", "http2", "json", "matched-path"] }
|
||||||
axum-server = { version = "0.5.1", features = ["tls-rustls"] }
|
axum-server = { version = "0.5.1", features = ["tls-rustls"] }
|
||||||
tower = { version = "0.4.13", features = ["util"] }
|
|
||||||
tower-http = { version = "0.4.1", features = ["add-extension", "cors", "sensitive-headers", "trace", "util"] }
|
|
||||||
ruma = { git = "https://github.com/ruma/ruma", rev = "5495b85aa311c2805302edb0a7de40399e22b397", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "state-res", "unstable-msc2448", "unstable-msc3575", "unstable-exhaustive-types", "ring-compat", "unstable-unspecified" ] }
|
|
||||||
tokio = { version = "1.28.1", features = ["fs", "macros", "signal", "sync"] }
|
|
||||||
bytes = "1.4.0"
|
|
||||||
http = "0.2.9"
|
|
||||||
serde_json = { version = "1.0.96", features = ["raw_value"] }
|
|
||||||
serde_yaml = "0.9.21"
|
|
||||||
serde = { version = "1.0.163", features = ["rc"] }
|
|
||||||
rand = "0.8.5"
|
|
||||||
rust-argon2 = "1.0.0"
|
|
||||||
hyper = "0.14.26"
|
|
||||||
reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls-native-roots", "socks"] }
|
|
||||||
thiserror = "1.0.40"
|
|
||||||
image = { version = "0.24.6", default-features = false, features = ["jpeg", "png", "gif"] }
|
|
||||||
base64 = "0.21.2"
|
base64 = "0.21.2"
|
||||||
ring = "0.17.7"
|
bytes = "1.4.0"
|
||||||
trust-dns-resolver = "0.22.0"
|
clap = { version = "4.3.0", default-features = false, features = ["std", "derive", "help", "usage", "error-context", "string"] }
|
||||||
regex = "1.8.1"
|
figment = { version = "0.10.8", features = ["env", "toml"] }
|
||||||
|
futures-util = { version = "0.3.28", default-features = false }
|
||||||
|
hmac = "0.12.1"
|
||||||
|
http = "0.2.9"
|
||||||
|
hyper = "0.14.26"
|
||||||
|
image = { version = "0.24.6", default-features = false, features = ["jpeg", "png", "gif"] }
|
||||||
jsonwebtoken = "9.2.0"
|
jsonwebtoken = "9.2.0"
|
||||||
tracing = { version = "0.1.37", features = [] }
|
lru-cache = "0.1.2"
|
||||||
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
num_cpus = "1.15.0"
|
||||||
tracing-flame = "0.2.0"
|
|
||||||
opentelemetry = { version = "0.18.0", features = ["rt-tokio"] }
|
opentelemetry = { version = "0.18.0", features = ["rt-tokio"] }
|
||||||
opentelemetry-jaeger = { version = "0.17.0", features = ["rt-tokio"] }
|
opentelemetry-jaeger = { version = "0.17.0", features = ["rt-tokio"] }
|
||||||
tracing-opentelemetry = "0.18.0"
|
|
||||||
lru-cache = "0.1.2"
|
|
||||||
rusqlite = { version = "0.29.0", optional = true, features = ["bundled"] }
|
|
||||||
parking_lot = { version = "0.12.1", optional = true }
|
parking_lot = { version = "0.12.1", optional = true }
|
||||||
num_cpus = "1.15.0"
|
rand = "0.8.5"
|
||||||
serde_html_form = "0.2.0"
|
regex = "1.8.1"
|
||||||
thread_local = "1.1.7"
|
reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls-native-roots", "socks"] }
|
||||||
hmac = "0.12.1"
|
ring = "0.17.7"
|
||||||
sha-1 = "0.10.1"
|
rocksdb = { package = "rust-rocksdb", version = "0.24.0", features = ["lz4", "multi-threaded-cf", "zstd"], optional = true }
|
||||||
clap = { version = "4.3.0", default-features = false, features = ["std", "derive", "help", "usage", "error-context", "string"] }
|
ruma = { git = "https://github.com/ruma/ruma", rev = "5495b85aa311c2805302edb0a7de40399e22b397", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "state-res", "unstable-msc2448", "unstable-msc3575", "unstable-exhaustive-types", "ring-compat", "unstable-unspecified" ] }
|
||||||
futures-util = { version = "0.3.28", default-features = false }
|
rusqlite = { version = "0.29.0", optional = true, features = ["bundled"] }
|
||||||
figment = { version = "0.10.8", features = ["env", "toml"] }
|
rust-argon2 = "1.0.0"
|
||||||
tikv-jemallocator = { version = "0.5.0", features = ["unprefixed_malloc_on_supported_platforms"], optional = true }
|
|
||||||
async-trait = "0.1.68"
|
|
||||||
sd-notify = { version = "0.4.1", optional = true }
|
sd-notify = { version = "0.4.1", optional = true }
|
||||||
|
serde = { version = "1.0.163", features = ["rc"] }
|
||||||
[dependencies.rocksdb]
|
serde_html_form = "0.2.0"
|
||||||
package = "rust-rocksdb"
|
serde_json = { version = "1.0.96", features = ["raw_value"] }
|
||||||
version = "0.24.0"
|
serde_yaml = "0.9.21"
|
||||||
optional = true
|
sha-1 = "0.10.1"
|
||||||
features = [
|
thiserror = "1.0.40"
|
||||||
"multi-threaded-cf",
|
thread_local = "1.1.7"
|
||||||
"zstd",
|
tikv-jemallocator = { version = "0.5.0", features = ["unprefixed_malloc_on_supported_platforms"], optional = true }
|
||||||
"lz4",
|
tokio = { version = "1.28.1", features = ["fs", "macros", "signal", "sync"] }
|
||||||
]
|
tower = { version = "0.4.13", features = ["util"] }
|
||||||
|
tower-http = { version = "0.4.1", features = ["add-extension", "cors", "sensitive-headers", "trace", "util"] }
|
||||||
|
tracing = { version = "0.1.37", features = [] }
|
||||||
|
tracing-flame = "0.2.0"
|
||||||
|
tracing-opentelemetry = "0.18.0"
|
||||||
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
||||||
|
trust-dns-resolver = "0.22.0"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
nix = { version = "0.28", features = ["resource"] }
|
nix = { version = "0.28", features = ["resource"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["backend_sqlite", "backend_rocksdb", "systemd"]
|
default = ["backend_rocksdb", "backend_sqlite", "systemd"]
|
||||||
backend_sqlite = ["sqlite"]
|
|
||||||
|
# Keep sorted
|
||||||
backend_rocksdb = ["rocksdb"]
|
backend_rocksdb = ["rocksdb"]
|
||||||
|
backend_sqlite = ["sqlite"]
|
||||||
jemalloc = ["tikv-jemallocator"]
|
jemalloc = ["tikv-jemallocator"]
|
||||||
sqlite = ["rusqlite", "parking_lot", "tokio/signal"]
|
sqlite = ["rusqlite", "parking_lot", "tokio/signal"]
|
||||||
systemd = ["sd-notify"]
|
systemd = ["sd-notify"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue