Skip to content

Commit

Permalink
make winnow a workspace dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Aug 5, 2024
1 parent 415036c commit 78a7e32
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ futures-lite = { version = "2.1.0", default-features = false, features = ["std"]
faster-hex = { version = "0.9.0", default-features = false }
reqwest = { version = "0.12.0", default-features = false, features = ["charset", "http2", "macos-system-configuration"] } # all but the 'default-tls' feature
curl = { version = "0.4" }
winnow = { version = "0.6.0", features = ["simd"] }

[package.metadata.docs.rs]
features = ["document-features", "max"]
Expand Down
2 changes: 1 addition & 1 deletion gix-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ bstr = { version = "1.3.0", default-features = false, features = [
"std",
"unicode",
] }
winnow = { version = "0.6.0", features = ["simd"] }
winnow.workspace = true
itoa = "1.0.1"
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
Expand Down
6 changes: 3 additions & 3 deletions gix-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ autotests = false
serde = ["dep:serde", "bstr/serde", "gix-sec/serde", "gix-ref/serde", "gix-glob/serde", "gix-config-value/serde"]

[dependencies]
gix-features = { version = "^0.38.2", path = "../gix-features"}
gix-features = { version = "^0.38.2", path = "../gix-features" }
gix-config-value = { version = "^0.14.7", path = "../gix-config-value" }
gix-path = { version = "^0.10.9", path = "../gix-path" }
gix-sec = { version = "^0.10.7", path = "../gix-sec" }
gix-ref = { version = "^0.45.0", path = "../gix-ref" }
gix-glob = { version = "^0.16.4", path = "../gix-glob" }

winnow = { version = "0.6.0", features = ["simd"] }
winnow.workspace = true
memchr = "2"
thiserror = "1.0.26"
unicode-bom = "2.0.2"
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
smallvec = "1.9.0"
once_cell = "1.14.0"

Expand Down
2 changes: 1 addition & 1 deletion gix-object/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ bstr = { version = "1.3.0", default-features = false, features = [
"std",
"unicode",
] }
winnow = { version = "0.6.0", features = ["simd"] }
winnow.workspace = true
smallvec = { version = "1.4.0", features = ["write"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
Expand Down
2 changes: 1 addition & 1 deletion gix-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ bstr = { version = "1.3.0", default-features = false, features = [
"std",
"unicode",
] }
winnow = { version = "0.6.0", features = ["simd"] }
winnow.workspace = true

# for async-client
async-trait = { version = "0.1.51", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion gix-ref/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ gix-lock = { version = "^14.0.0", path = "../gix-lock" }
gix-tempfile = { version = "^14.0.0", default-features = false, path = "../gix-tempfile" }

thiserror = "1.0.34"
winnow = { version = "0.6.0", features = ["simd"] }
winnow.workspace = true
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

# packed refs
Expand Down

0 comments on commit 78a7e32

Please sign in to comment.