Skip to content

Commit b7560a2

Browse files
committed
Merge branch 'adjustments-for-cargo'
2 parents 71b7422 + f8471b1 commit b7560a2

File tree

28 files changed

+403
-141
lines changed

28 files changed

+403
-141
lines changed

Cargo.lock

Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ repository = "https://github.com/Byron/gitoxide"
55
authors = ["Sebastian Thiel <[email protected]>"]
66
edition = "2021"
77
license = "MIT OR Apache-2.0"
8-
version = "0.29.0"
8+
version = "0.30.0"
99
default-run = "gix"
1010
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
1111
resolver = "2"
1212

1313
[[bin]]
1414
name = "ein"
15-
doc = false
1615
path = "src/ein.rs"
16+
doc = false
1717
test = false
1818
doctest = false
1919

@@ -162,9 +162,9 @@ gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"]
162162
[dependencies]
163163
anyhow = "1.0.42"
164164

165-
gitoxide-core = { version = "^0.31.0", path = "gitoxide-core" }
165+
gitoxide-core = { version = "^0.32.0", path = "gitoxide-core" }
166166
gix-features = { version = "^0.33.0", path = "gix-features" }
167-
gix = { version = "^0.52.0", path = "gix", default-features = false }
167+
gix = { version = "^0.53.0", path = "gix", default-features = false }
168168
time = "0.3.23"
169169

170170
clap = { version = "4.1.1", features = ["derive", "cargo"] }

gitoxide-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "gitoxide-core"
33
description = "The library implementing all capabilities of the gitoxide CLI"
44
repository = "https://github.com/Byron/gitoxide"
5-
version = "0.31.0"
5+
version = "0.32.0"
66
authors = ["Sebastian Thiel <[email protected]>"]
77
license = "MIT OR Apache-2.0"
88
edition = "2021"
@@ -44,7 +44,7 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"]
4444

4545
[dependencies]
4646
# deselect everything else (like "performance") as this should be controllable by the parent application.
47-
gix = { version = "^0.52.0", path = "../gix", default-features = false }
47+
gix = { version = "^0.53.0", path = "../gix", default-features = false }
4848
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.41.0", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static"] }
4949
gix-transport-configuration-only = { package = "gix-transport", version = "^0.35.0", path = "../gix-transport", default-features = false }
5050
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.3.0", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }

gix-archive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ zip = ["dep:zip", "dep:time"]
2727
gix-worktree-stream = { version = "^0.3.0", path = "../gix-worktree-stream" }
2828
gix-object = { version = "^0.35.0", path = "../gix-object" }
2929
gix-path = { version = "^0.9.0", path = "../gix-path", optional = true }
30-
gix-date = { version = "^0.7.3", path = "../gix-date" }
30+
gix-date = { version = "^0.7.4", path = "../gix-date" }
3131

3232
flate2 = { version = "1.0.26", optional = true }
3333
zip = { version = "0.6.6", optional = true, default-features = false, features = ["deflate", "time"] }

0 commit comments

Comments
 (0)