Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade indexmap crate #10199

Merged
merged 1 commit into from Jun 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/rust/engine/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/rust/engine/Cargo.toml
Expand Up @@ -108,7 +108,7 @@ futures01 = { package = "futures", version = "0.1" }
futures = { version = "0.3", features = ["compat"] }
graph = { path = "graph" }
hashing = { path = "hashing" }
indexmap = "1.0.2"
indexmap = "1.4"
itertools = "0.8.2"
lazy_static = "1"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/fs/store/Cargo.toml
Expand Up @@ -18,7 +18,7 @@ glob = "0.2.11"
# TODO: This is 0.5.1 + https://github.com/tikv/grpc-rs/pull/457 + a workaround for https://github.com/rust-lang/cargo/issues/8258
grpcio = { git = "https://github.com/pantsbuild/grpc-rs.git", rev = "ed3afa3c24ddf1fdd86826e836f57c00757dfc00", default_features = false, features = ["protobuf-codec", "secure"] }
hashing = { path = "../../hashing" }
indexmap = "1.0.2"
indexmap = "1.4"
itertools = "0.7.2"
lmdb = { git = "https://github.com/pantsbuild/lmdb-rs.git", rev = "06bdfbfc6348f6804127176e561843f214fc17f8" }
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/ui/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ path = "src/console_ui.rs"
indicatif = "0.14.0"
futures01 = { package = "futures", version = "0.1" }
futures = { version = "0.3", features = ["compat"] }
indexmap = "1.0.2"
indexmap = "1.4"
uuid = { version = "0.7", features = ["v4"] }
logging = { path = "../logging" }
task_executor = { path = "../task_executor" }
Expand Down