Skip to content

Commit 45afe78

Browse files
Pierre Chevalierfacebook-github-bot
authored andcommitted
Upgrade gix crates
Summary: ignore-conflict-markers Upgrade gitoxide crates to latest release to propagate some upstream fixes: * [[gix-object] Support empty tags with or without trailing NL](GitoxideLabs/gitoxide#1903) * [[fix] Make Tree roundtrip by storing additional bit of information](GitoxideLabs/gitoxide#1917) * [fix: Make email with spaces round-trip](GitoxideLabs/gitoxide#1922) * [Make author and committer date roundtrip](GitoxideLabs/gitoxide#1935) Reviewed By: quark-zju Differential Revision: D74337531 fbshipit-source-id: 5361c7d4b0b52c683e05af8d19ac2169aebc8197
1 parent 34b7eaf commit 45afe78

File tree

47 files changed

+95
-161
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+95
-161
lines changed

eden/mononoke/blobstore/ephemeral_blobstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ async-trait = "0.1.86"
1616
bincode = { version = "2", features = ["serde"] }
1717
blobstore = { version = "0.1.0", path = ".." }
1818
bonsai_globalrev_mapping = { version = "0.1.0", path = "../../bonsai_globalrev_mapping" }
19-
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
19+
chrono = { version = "=0.4.39", features = ["clock", "serde", "std"], default-features = false }
2020
commit_graph = { version = "0.1.0", path = "../../repo_attributes/commit_graph/commit_graph" }
2121
commit_graph_types = { version = "0.1.0", path = "../../repo_attributes/commit_graph/commit_graph_types" }
2222
context = { version = "0.1.0", path = "../../server/context" }

eden/mononoke/blobstore/multiplexedblob/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "GPLv2+"
1111
anyhow = "1.0.95"
1212
blobstore = { version = "0.1.0", path = ".." }
1313
blobstore_stats = { version = "0.1.0", path = "../blobstore_stats" }
14-
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
14+
chrono = { version = "=0.4.39", features = ["clock", "serde", "std"], default-features = false }
1515
clap = { version = "4.5.38", features = ["derive", "env", "string", "unicode", "wrap_help"] }
1616
context = { version = "0.1.0", path = "../../server/context" }
1717
futures = { version = "0.3.30", features = ["async-await", "compat"] }

eden/mononoke/blobstore/s3blob/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "GPLv2+"
1111
anyhow = "1.0.95"
1212
async-trait = "0.1.86"
1313
blobstore = { version = "0.1.0", path = ".." }
14-
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
14+
chrono = { version = "=0.4.39", features = ["clock", "serde", "std"], default-features = false }
1515
context = { version = "0.1.0", path = "../../server/context" }
1616
futures_stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
1717
hyper = { version = "0.14.26", features = ["client", "http1", "http2", "stream"] }

eden/mononoke/blobstore_healer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ blobstore_factory = { version = "0.1.0", path = "../blobstore/factory" }
1919
blobstore_sync_queue = { version = "0.1.0", path = "../blobstore_sync_queue" }
2020
borrowed = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
2121
cached_config = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
22-
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
22+
chrono = { version = "=0.4.39", features = ["clock", "serde", "std"], default-features = false }
2323
clap = { version = "4.5.38", features = ["derive", "env", "string", "unicode", "wrap_help"] }
2424
cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
2525
context = { version = "0.1.0", path = "../server/context" }

eden/mononoke/bonsai_git_mapping/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ caching_ext = { version = "0.1.0", path = "../common/rust/caching_ext" }
2424
context = { version = "0.1.0", path = "../server/context" }
2525
facet = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
2626
fbthrift = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "main" }
27-
gix-hash = "0.16.0"
27+
gix-hash = "0.18.0"
2828
justknobs = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
2929
memcache = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
3030
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }

eden/mononoke/common/async_limiter/examples/tokio_v2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ path = "main.rs"
1414
[dependencies]
1515
anyhow = "1.0.95"
1616
async_limiter = { version = "0.1.0", path = "../.." }
17-
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
17+
chrono = { version = "=0.4.39", features = ["clock", "serde", "std"], default-features = false }
1818
futures = { version = "0.3.30", features = ["async-await", "compat"] }
1919
governor = "0.3.2"
2020
nonzero_ext = "0.2"

eden/mononoke/common/ods_counters/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "GPLv2+"
99

1010
[dependencies]
1111
async-trait = "0.1.86"
12-
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
12+
chrono = { version = "=0.4.39", features = ["clock", "serde", "std"], default-features = false }
1313
fbinit = { version = "0.2.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
1414
maplit = "1.0"
1515
thiserror = "2"

eden/mononoke/features/repo_update_logger/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ bonsai_globalrev_mapping = { version = "0.1.0", path = "../../bonsai_globalrev_m
1616
bookmarks = { version = "0.1.0", path = "../../bookmarks" }
1717
bookmarks_types = { version = "0.1.0", path = "../../bookmarks/bookmarks_types" }
1818
borrowed = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
19-
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
19+
chrono = { version = "=0.4.39", features = ["clock", "serde", "std"], default-features = false }
2020
commit_graph = { version = "0.1.0", path = "../../repo_attributes/commit_graph/commit_graph" }
2121
context = { version = "0.1.0", path = "../../server/context" }
2222
ephemeral_blobstore = { version = "0.1.0", path = "../../blobstore/ephemeral_blobstore" }
2323
futures = { version = "0.3.30", features = ["async-await", "compat"] }
2424
futures_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
2525
futures_stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
2626
git_source_of_truth = { version = "0.1.0", path = "../../git_source_of_truth" }
27-
gix-hash = "0.16.0"
27+
gix-hash = "0.18.0"
2828
hostname = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
2929
logger_ext = { version = "0.1.0", path = "../../common/logger_ext" }
3030
metaconfig_types = { version = "0.1.0", path = "../../metaconfig/types" }

eden/mononoke/git/git_types/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ futures = { version = "0.3.30", features = ["async-await", "compat"] }
2424
futures_watchdog = { version = "0.1.0", path = "../../common/futures_watchdog" }
2525
git_delta = { version = "0.1.0", path = "../../third_party/git_delta" }
2626
git_types_thrift = { version = "0.1.0", path = "if" }
27-
gix-actor = "0.33.1"
28-
gix-hash = "0.16.0"
29-
gix-object = "0.47.0"
27+
gix-actor = "0.35.1"
28+
gix-hash = "0.18.0"
29+
gix-object = "0.49.1"
3030
itertools = "0.14.0"
3131
lazy_static = { version = "1.5", features = ["spin_no_std"], default-features = false }
3232
manifest = { version = "0.1.0", path = "../../manifest" }

eden/mononoke/git/gitimport/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ filestore = { version = "0.1.0", path = "../../filestore" }
2626
futures = { version = "0.3.30", features = ["async-await", "compat"] }
2727
git_ref_content_mapping = { version = "0.1.0", path = "../../git_ref_content_mapping" }
2828
git_symbolic_refs = { version = "0.1.0", path = "../../git_symbolic_refs" }
29-
gix-hash = "0.16.0"
29+
gix-hash = "0.18.0"
3030
import_direct = { version = "0.1.0", path = "../import_direct" }
3131
import_tools = { version = "0.1.0", path = "../import_tools" }
3232
linked-hash-map = { version = "0.5", features = ["serde_impl"] }

0 commit comments

Comments
 (0)