Skip to content

Commit

Permalink
Upgrade serde_json to 1.0.125
Browse files Browse the repository at this point in the history
Summary: It has some fixes from the previous 1.0.100

Reviewed By: Imxset21

Differential Revision: D63983796

fbshipit-source-id: 5dc5b48ac515d8901a942d737a1f1f1057060cad
  • Loading branch information
jagill authored and facebook-github-bot committed Oct 7, 2024
1 parent 31ffe9b commit 5272750
Show file tree
Hide file tree
Showing 53 changed files with 53 additions and 53 deletions.
2 changes: 1 addition & 1 deletion eden/fs/cli_rs/edenfs-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ futures = { version = "0.3.30", features = ["async-await", "compat"] }
pathdiff = "0.2"
regex = "1.9.2"
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
shlex = "1.3"
strum = { version = "0.26.2", features = ["derive"] }
subprocess = "0.2.7"
Expand Down
2 changes: 1 addition & 1 deletion eden/fs/cli_rs/edenfs-commands/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ hex = "0.4.3"
hg_util = { package = "util", version = "0.1.0", path = "../../../scm/lib/util" }
once_cell = "1.12"
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
subprocess = "0.2.7"
sysinfo = "0.30.11"
tabular = "0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/admin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ repo_factory = { version = "0.1.0", path = "../repo_factory" }
repo_identity = { version = "0.1.0", path = "../repo_attributes/repo_identity" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_derive = "1.0.185"
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
sorted_vector_map = { version = "0.2.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
sql_query_config = { version = "0.1.0", path = "../repo_attributes/sql_query_config" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/async_requests/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ fbinit = { version = "0.2.0", git = "https://github.com/facebookexperimental/rus
fbinit-tokio = { version = "0.1.2", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
mononoke_macros = { version = "0.1.0", path = "../../mononoke_macros" }
repo_identity = { version = "0.1.0", path = "../../repo_attributes/repo_identity" }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
test_repo_factory = { version = "0.1.0", path = "../../repo_factory/test_repo_factory" }
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/sqlblob/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
nonzero_ext = "0.2"
once_cell = "1.12"
rand = { version = "0.8", features = ["small_rng"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
sql_ext = { version = "0.1.0", path = "../../common/rust/sql_ext" }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/commit_cloud/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
permission_checker = { version = "0.1.0", path = "../permission_checker" }
repo_derived_data = { version = "0.1.0", path = "../repo_attributes/repo_derived_data" }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
sql_construct = { version = "0.1.0", path = "../common/sql_construct" }
sql_ext = { version = "0.1.0", path = "../common/rust/sql_ext" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/common/logger_ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ async-trait = "0.1.71"
context = { version = "0.1.0", path = "../../server/context" }
metaconfig_types = { version = "0.1.0", path = "../../metaconfig/types" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
2 changes: 1 addition & 1 deletion eden/mononoke/common/rust/sql_ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ paste = "1.0.14"
retry = { version = "0.1.0", path = "../../retry" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_cbor = "0.11"
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
sql_common = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/edenapi_service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ repo_identity = { version = "0.1.0", path = "../repo_attributes/repo_identity" }
scuba_ext = { version = "0.1.0", path = "../common/scuba_ext" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_cbor = "0.11"
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
thiserror = "1.0.64"
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/git/gitexport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ repo_derived_data = { version = "0.1.0", path = "../../repo_attributes/repo_deri
repo_factory = { version = "0.1.0", path = "../../repo_factory" }
scuba_ext = { version = "0.1.0", path = "../../common/scuba_ext" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
test_repo_factory = { version = "0.1.0", path = "../../repo_factory/test_repo_factory" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/gotham_ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ quiet_stream = { version = "0.1.0", path = "../quiet_stream" }
rate_limiting = { version = "0.1.0", path = "../rate_limiting" }
scopeguard = "1.0.0"
scuba_ext = { version = "0.1.0", path = "../common/scuba_ext" }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
time_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/hooks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ permission_checker = { version = "0.1.0", path = "../permission_checker" }
regex = "1.9.2"
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_derive = "1.0.185"
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
serde_regex = "1"
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
source_control = { version = "0.1.0", path = "../scs/if" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/lfs_protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ serde = { version = "1.0.185", features = ["derive", "rc"] }
assert_matches = "1.5"
maplit = "1.0"
mononoke_macros = { version = "0.1.0", path = "../mononoke_macros" }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
2 changes: 1 addition & 1 deletion eden/mononoke/lfs_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ repo_permission_checker = { version = "0.1.0", path = "../repo_attributes/repo_p
scuba_ext = { version = "0.1.0", path = "../common/scuba_ext" }
secure_utils = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
thiserror = "1.0.64"
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/megarepo_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ repo_blobstore = { version = "0.1.0", path = "../blobrepo/repo_blobstore" }
repo_derived_data = { version = "0.1.0", path = "../repo_attributes/repo_derived_data" }
repo_factory = { version = "0.1.0", path = "../repo_factory" }
repo_identity = { version = "0.1.0", path = "../repo_attributes/repo_identity" }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
sorted_vector_map = { version = "0.2.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
unodes = { version = "0.1.0", path = "../derived_data/unodes" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/megarepo_api/mapping/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
repo_blobstore = { version = "0.1.0", path = "../../blobrepo/repo_blobstore" }
repo_derived_data = { version = "0.1.0", path = "../../repo_attributes/repo_derived_data" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
sql_construct = { version = "0.1.0", path = "../../common/sql_construct" }
sql_ext = { version = "0.1.0", path = "../../common/rust/sql_ext" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/mercurial/mutation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ memcache = { version = "0.1.0", git = "https://github.com/facebookexperimental/r
mercurial_types = { version = "0.1.0", path = "../types" }
metaconfig_types = { version = "0.1.0", path = "../../metaconfig/types" }
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
sql_construct = { version = "0.1.0", path = "../../common/sql_construct" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/metaconfig/parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repourl = { version = "0.1.0", path = "../../../scm/lib/repo/url" }
rusoto_core = "0.46.0"
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_ignored = "0.1.8"
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
thiserror = "1.0.64"
toml = "0.8.4"

Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/metaconfig/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ rusoto_core = "0.46.0"
scuba = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_derive = "1.0.185"
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
2 changes: 1 addition & 1 deletion eden/mononoke/mononoke_configs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ metaconfig_parser = { version = "0.1.0", path = "../metaconfig/parser" }
metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
repos = { version = "0.1.0", path = "../../../configerator/structs/scm/mononoke/repos/repos" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
sha2 = "0.10.6"
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/mononoke_hg_sync_job/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ repo_identity = { version = "0.1.0", path = "../repo_attributes/repo_identity" }
repo_lock = { version = "0.1.0", path = "../repo_attributes/repo_lock/repo_lock" }
retry = { version = "0.1.0", path = "../common/retry" }
scuba_ext = { version = "0.1.0", path = "../common/scuba_ext" }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
sharding_ext = { version = "0.1.0", path = "../cmdlib/sharding_ext" }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/mononoke_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ paste = "1.0.14"
pretty_assertions = { version = "1.2", features = ["alloc"], default-features = false }
quickcheck_async = "0.1.1"
rand = { version = "0.8", features = ["small_rng"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/mononoke/permission_checker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ itertools = "0.11.0"
maplit = "1.0"
openssl = "0.10.63"
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/repo_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ repo_permission_checker = { version = "0.1.0", path = "../repo_attributes/repo_p
revisionstore_types = { version = "0.1.0", path = "../../scm/lib/revisionstore/types" }
scuba_ext = { version = "0.1.0", path = "../common/scuba_ext" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
sql_query_config = { version = "0.1.0", path = "../repo_attributes/sql_query_config" }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/repo_import/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ repo_cross_repo = { version = "0.1.0", path = "../repo_attributes/repo_cross_rep
repo_derived_data = { version = "0.1.0", path = "../repo_attributes/repo_derived_data" }
repo_identity = { version = "0.1.0", path = "../repo_attributes/repo_identity" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
sql_query_config = { version = "0.1.0", path = "../repo_attributes/sql_query_config" }
synced_commit_mapping = { version = "0.1.0", path = "../commit_rewriting/synced_commit_mapping" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/server/repo_listener/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ repo_identity = { version = "0.1.0", path = "../../repo_attributes/repo_identity
repo_permission_checker = { version = "0.1.0", path = "../../repo_attributes/repo_permission_checker" }
scribe_ext = { version = "0.1.0", path = "../../common/scribe_ext" }
scuba_ext = { version = "0.1.0", path = "../../common/scuba_ext" }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
session_id = { version = "0.1.0", path = "../session_id" }
sha1 = "0.10.5"
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/statistics_collector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ repo_blobstore = { version = "0.1.0", path = "../blobrepo/repo_blobstore" }
repo_derived_data = { version = "0.1.0", path = "../repo_attributes/repo_derived_data" }
repo_identity = { version = "0.1.0", path = "../repo_attributes/repo_identity" }
scuba_ext = { version = "0.1.0", path = "../common/scuba_ext" }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
sharding_ext = { version = "0.1.0", path = "../cmdlib/sharding_ext" }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/tools/admin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ repo_factory = { version = "0.1.0", path = "../../repo_factory" }
repo_identity = { version = "0.1.0", path = "../../repo_attributes/repo_identity" }
repo_lock = { version = "0.1.0", path = "../../repo_attributes/repo_lock/repo_lock" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
skeleton_manifest = { version = "0.1.0", path = "../../derived_data/skeleton_manifest" }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
source_control = { version = "0.1.0", path = "../../scs/if" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/tools/testtool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ repo_derived_data = { version = "0.1.0", path = "../../repo_attributes/repo_deri
repo_identity = { version = "0.1.0", path = "../../repo_attributes/repo_identity" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_derive = "1.0.185"
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
sorted_vector_map = { version = "0.2.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
tests_utils = { version = "0.1.0", path = "../../tests/utils" }
Expand Down
2 changes: 1 addition & 1 deletion eden/scm/exec/eden_apfs_mount_helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ libc = "0.2.139"
once_cell = "1.12"
plist = "1.4.3"
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
sha2 = "0.10.6"
structopt = "0.3.26"

Expand Down
2 changes: 1 addition & 1 deletion eden/scm/lib/blackbox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_alt = { version = "0.1.0", path = "serde_alt" }
serde_cbor = "0.11"
serde_derive = "1.0.185"
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }

[dev-dependencies]
minibench = { version = "0.1.0", path = "../minibench" }
Expand Down
2 changes: 1 addition & 1 deletion eden/scm/lib/cats/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ anyhow = "1.0.86"
configmodel = { version = "0.1.0", path = "../config/model" }
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
thiserror = "1.0.64"
tracing = { version = "0.1.40", features = ["attributes", "valuable"] }
util = { version = "0.1.0", path = "../util" }
2 changes: 1 addition & 1 deletion eden/scm/lib/clientinfo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ hostname = { version = "0.1.0", git = "https://github.com/facebookexperimental/r
lazy_static = "1.4"
rand = { version = "0.8", features = ["small_rng"] }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] }
tracing = { version = "0.1.40", features = ["attributes", "valuable"] }
Loading

0 comments on commit 5272750

Please sign in to comment.