mirror of
https://github.com/rustic-rs/rustic.git
synced 2025-10-26 11:18:51 +00:00
style: dprint fmt
Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com>
This commit is contained in:
parent
71063c3f1c
commit
c78a1d430d
39
Cargo.toml
39
Cargo.toml
@ -142,9 +142,7 @@ sha2 = "0.10"
|
||||
xattr = "1"
|
||||
|
||||
[workspace.dependencies]
|
||||
rustic_core = { path = "crates/rustic_core/", features = [
|
||||
"cli",
|
||||
], version = "0" }
|
||||
rustic_core = { path = "crates/rustic_core/", features = ["cli"], version = "0" }
|
||||
abscissa_core = "0.7.0"
|
||||
|
||||
# logging
|
||||
@ -189,20 +187,13 @@ serde-aux = "4"
|
||||
# local backend
|
||||
walkdir = "2"
|
||||
ignore = "0.4"
|
||||
cached = { version = "0.45", default-features = false, features = [
|
||||
"proc_macro",
|
||||
] }
|
||||
cached = { version = "0.45", default-features = false, features = ["proc_macro"] }
|
||||
nix = { version = "0.27", default-features = false, features = ["user", "fs"] }
|
||||
filetime = "0.2"
|
||||
aho-corasick = "1"
|
||||
|
||||
# rest backend
|
||||
reqwest = { version = "0.11", default-features = false, features = [
|
||||
"json",
|
||||
"rustls-tls-native-roots",
|
||||
"stream",
|
||||
"blocking",
|
||||
] }
|
||||
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls-native-roots", "stream", "blocking"] }
|
||||
backoff = "0.4"
|
||||
url = "2.4.1"
|
||||
|
||||
@ -211,21 +202,11 @@ semver = "1"
|
||||
|
||||
# other dependencies
|
||||
bytes = "1"
|
||||
chrono = { version = "0.4", default-features = false, features = [
|
||||
"clock",
|
||||
"serde",
|
||||
] }
|
||||
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
|
||||
zstd = "0.12"
|
||||
enum-map = "2"
|
||||
enum-map-derive = "0.14"
|
||||
rhai = { version = "1.16", features = [
|
||||
"sync",
|
||||
"serde",
|
||||
"no_optimize",
|
||||
"no_module",
|
||||
"no_custom_syntax",
|
||||
"only_i64",
|
||||
] }
|
||||
rhai = { version = "1.16", features = ["sync", "serde", "no_optimize", "no_module", "no_custom_syntax", "only_i64"] }
|
||||
simplelog = "0.12"
|
||||
comfy-table = "7.0.1"
|
||||
|
||||
@ -247,11 +228,7 @@ humantime = "2"
|
||||
clap_complete = "4"
|
||||
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
|
||||
once_cell = "1.18"
|
||||
self_update = { version = "0.38", default-features = false, features = [
|
||||
"rustls",
|
||||
"archive-tar",
|
||||
"compression-flate2",
|
||||
] }
|
||||
self_update = { version = "0.38", default-features = false, features = ["rustls", "archive-tar", "compression-flate2"] }
|
||||
|
||||
# dev dependencies
|
||||
rstest = "0.18"
|
||||
@ -284,7 +261,7 @@ codegen-units = 4
|
||||
|
||||
[profile.release]
|
||||
opt-level = 3
|
||||
debug = false # true for profiling
|
||||
debug = false # true for profiling
|
||||
rpath = false
|
||||
lto = "fat"
|
||||
debug-assertions = false
|
||||
@ -302,7 +279,7 @@ codegen-units = 4
|
||||
|
||||
[profile.bench]
|
||||
opt-level = 3
|
||||
debug = true # true for profiling
|
||||
debug = true # true for profiling
|
||||
rpath = false
|
||||
lto = true
|
||||
debug-assertions = false
|
||||
|
||||
Loading…
Reference in New Issue
Block a user