Skip to content

Commit cd4de83

Browse files
committed
update dependencies
1 parent 6f55f2a commit cd4de83

File tree

10 files changed

+73
-47
lines changed

10 files changed

+73
-47
lines changed

Cargo.lock

+53-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+6-8
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,22 @@ max = ["max-control", "fast", "gitoxide-core-blocking-client", "http-client-curl
4242
## transports as it uses Rust's HTTP implementation.
4343
##
4444
## As fast as possible, with TUI progress, progress line rendering with auto-configuration, all transports available but less mature pure Rust HTTP implementation, all `ein` tools, CLI colors and local-time support, JSON output, regex support for rev-specs.
45-
max-pure = ["max-control", "gix-features/rustsha1", "gix-features/zlib-rust-backend", "http-client-reqwest", "gitoxide-core-blocking-client" ]
45+
max-pure = ["max-control", "gix-features/rustsha1", "gix-features/zlib-rust-backend", "http-client-reqwest", "gitoxide-core-blocking-client"]
4646

4747
## Like `max`, but with more control for configuration. See the *Package Maintainers* headline for more information.
48-
max-control = ["tracing", "fast-safe", "pretty-cli", "gitoxide-core-tools-query", "gitoxide-core-tools-corpus", "gitoxide-core-tools", "prodash-render-line", "prodash-render-tui", "prodash/render-line-autoconfigure", "gix/revparse-regex" ]
48+
max-control = ["tracing", "fast-safe", "pretty-cli", "gitoxide-core-tools-query", "gitoxide-core-tools-corpus", "gitoxide-core-tools", "prodash-render-line", "prodash-render-tui", "prodash/render-line-autoconfigure", "gix/revparse-regex"]
4949

5050
## All of the good stuff, with less fanciness for smaller binaries.
5151
##
5252
## As fast as possible, progress line rendering, all transports based on their most mature implementation (HTTP), all `ein` tools, CLI colors and local-time support, JSON output.
53-
lean = ["fast", "tracing", "pretty-cli", "http-client-curl", "gitoxide-core-tools-query", "gitoxide-core-tools-corpus", "gitoxide-core-tools", "gitoxide-core-blocking-client", "prodash-render-line" ]
53+
lean = ["fast", "tracing", "pretty-cli", "http-client-curl", "gitoxide-core-tools-query", "gitoxide-core-tools-corpus", "gitoxide-core-tools", "gitoxide-core-blocking-client", "prodash-render-line"]
5454

5555
## The smallest possible build, best suitable for small single-core machines.
5656
##
5757
## This build is essentially limited to local operations without any fanciness.
5858
##
5959
## Optimized for size, no parallelism thus much slower, progress line rendering.
60-
small = ["pretty-cli", "gix-features/rustsha1", "gix-features/zlib-rust-backend", "prodash-render-line", "is-terminal" ]
60+
small = ["pretty-cli", "gix-features/rustsha1", "gix-features/zlib-rust-backend", "prodash-render-line", "is-terminal"]
6161

6262
## Like lean, but uses Rusts async implementations for networking.
6363
##
@@ -107,12 +107,12 @@ fast = ["gix/max-performance", "gix/comfort"]
107107
fast-safe = ["gix/max-performance-safe", "gix/comfort"]
108108

109109
## Enable tracing in `gitoxide-core`.
110-
tracing = ["dep:tracing-forest", "dep:tracing-subscriber", "dep:tracing", "gix-features/tracing", "gix-features/tracing-detail" ]
110+
tracing = ["dep:tracing-forest", "dep:tracing-subscriber", "dep:tracing", "gix-features/tracing", "gix-features/tracing-detail"]
111111

112112
## Use `clap` 3.0 to build the prettiest, best documented and most user-friendly CLI at the expense of binary size.
113113
## Provides a terminal user interface for detailed and exhaustive progress.
114114
## Provides a line renderer for leaner progress display, without the need for a full-blown TUI.
115-
pretty-cli = [ "gitoxide-core/serde", "prodash/progress-tree", "prodash/progress-tree-log", "prodash/local-time", "env_logger/humantime", "env_logger/color", "env_logger/auto-color" ]
115+
pretty-cli = ["gitoxide-core/serde", "prodash/progress-tree", "prodash/progress-tree-log", "prodash/local-time", "env_logger/humantime", "env_logger/color", "env_logger/auto-color"]
116116

117117
## The `--verbose` flag will be powered by an interactive progress mechanism that doubles as log as well as interactive progress
118118
## that appears after a short duration.
@@ -285,9 +285,7 @@ members = [
285285
"gix-worktree-stream",
286286
"gix-revwalk",
287287
"gix-fsck",
288-
289288
"tests/tools",
290-
291289
"gix-diff/tests",
292290
"gix-pack/tests",
293291
"gix-odb/tests",

gitoxide-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ estimate-hours = ["dep:fs-err", "dep:crossbeam-channel", "dep:smallvec"]
2323
query = ["dep:rusqlite"]
2424
## Run algorithms on a corpus of repositories and store their results for later comparison and intelligence gathering.
2525
## *Note that* `organize` we need for finding git repositories fast.
26-
corpus = [ "dep:rusqlite", "dep:sysinfo", "organize", "dep:crossbeam-channel", "dep:serde_json", "dep:tracing-forest", "dep:tracing-subscriber", "tracing", "dep:parking_lot" ]
26+
corpus = ["dep:rusqlite", "dep:sysinfo", "organize", "dep:crossbeam-channel", "dep:serde_json", "dep:tracing-forest", "dep:tracing-subscriber", "tracing", "dep:parking_lot"]
2727

2828
## The ability to create archives from virtual worktrees, similar to `git archive`.
2929
archive = ["dep:gix-archive-for-configuration-only", "gix/worktree-archive"]
@@ -77,7 +77,7 @@ crossbeam-channel = { version = "0.5.6", optional = true }
7777
smallvec = { version = "1.10.0", optional = true }
7878

7979
# for 'query' and 'corpus'
80-
rusqlite = { version = "0.30.0", optional = true, features = ["bundled"] }
80+
rusqlite = { version = "0.31.0", optional = true, features = ["bundled"] }
8181

8282
# for 'corpus'
8383
parking_lot = { version = "0.12.1", optional = true }

gix-config/tests/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ name = "mem"
1919
path = "mem.rs"
2020

2121
[dev-dependencies]
22-
gix-config = { path = ".."}
23-
gix-testtools = { path = "../../tests/tools"}
22+
gix-config = { path = ".." }
23+
gix-testtools = { path = "../../tests/tools" }
2424
gix = { path = "../../gix", default-features = false }
2525
gix-ref = { path = "../../gix-ref" }
2626
gix-path = { path = "../../gix-path" }
2727
gix-sec = { path = "../../gix-sec" }
28-
serial_test = { version = "2.0.0", default-features = false }
28+
serial_test = { version = "3.1.0", default-features = false }
2929
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
3030

3131
bytesize = "1.3.0"

gix-discover/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ dunce = "1.0.3"
2727

2828
[dev-dependencies]
2929
gix-testtools = { path = "../tests/tools" }
30-
serial_test = { version = "2.0.0", default-features = false }
30+
serial_test = { version = "3.1.0", default-features = false }
3131
is_ci = "1.1.1"
3232

3333
[target.'cfg(target_os = "macos")'.dev-dependencies]
34-
defer = "0.1.0"
34+
defer = "0.2.1"
3535

3636
[target.'cfg(any(unix, windows))'.dev-dependencies]
3737
tempfile = "3.2.0"

gix-filter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ smallvec = "1.10.0"
3030

3131

3232
[dev-dependencies]
33-
serial_test = { version = "2.0.0", default-features = false }
33+
serial_test = { version = "3.1.0", default-features = false }
3434
gix-testtools = { path = "../tests/tools" }
3535
gix-worktree = { path = "../gix-worktree", default-features = false, features = ["attributes"] }

gix-pathspec/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ gix-path = { version = "^0.10.7", path = "../gix-path" }
1818
gix-attributes = { version = "^0.22.2", path = "../gix-attributes" }
1919
gix-config-value = { version = "^0.14.6", path = "../gix-config-value" }
2020

21-
bstr = { version = "1.3.0", default-features = false, features = ["std"]}
21+
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
2222
bitflags = "2"
2323
thiserror = "1.0.26"
2424

2525
[dev-dependencies]
2626
gix-testtools = { path = "../tests/tools" }
2727
once_cell = "1.12.0"
28-
serial_test = "2.0.0"
28+
serial_test = "3.1.1"

gix-prompt/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ parking_lot = "0.12.1"
2323
rustix = { version = "0.38.4", features = ["termios"] }
2424

2525
[dev-dependencies]
26-
gix-testtools = { path = "../tests/tools"}
27-
serial_test = { version = "2.0.0", default-features = false }
26+
gix-testtools = { path = "../tests/tools" }
27+
serial_test = { version = "3.1.0", default-features = false }
2828
expectrl = "0.7.0"

gix-transport/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ futures-lite = { workspace = true, optional = true }
102102
pin-project-lite = { version = "0.2.6", optional = true }
103103

104104
# for http-client
105-
base64 = { version = "0.21.0", optional = true }
105+
base64 = { version = "0.22.1", optional = true }
106106

107107
# for http-client-curl. Additional configuration should be performed on higher levels of the dependency tree.
108108
curl = { workspace = true, optional = true }

gix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ gix-testtools = { path = "../tests/tools" }
382382
is_ci = "1.1.1"
383383
anyhow = "1"
384384
walkdir = "2.3.2"
385-
serial_test = { version = "2.0.0", default-features = false }
385+
serial_test = { version = "3.1.0", default-features = false }
386386
async-std = { version = "1.12.0", features = ["attributes"] }
387387

388388
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)