Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit e9c54b0

Browse files
committed
Rework cmd tests
Update cargo -> a5d8294 (fixes tests) cargo update
1 parent 42c4a90 commit e9c54b0

File tree

6 files changed

+682
-792
lines changed

6 files changed

+682
-792
lines changed

Cargo.lock

+220-220
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ categories = ["development-tools"]
1111
build = "build.rs"
1212

1313
[dependencies]
14-
cargo = { git = "https://github.com/rust-lang/cargo", rev = "9311f6d439e09da3ab918397a425be57da13f04a" }
14+
cargo = { git = "https://github.com/rust-lang/cargo", rev = "a5d82949485802abb45f888d5b8b7f23927f031d" }
1515
cargo_metadata = "0.6"
1616
clippy_lints = { git = "https://github.com/rust-lang-nursery/rust-clippy", rev = "183639b70bacf457920694d78a19cefe3565e1c0", optional = true }
1717
env_logger = "0.5"

src/concurrency.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use std::thread;
22

3-
use crossbeam_channel::{__crossbeam_channel_codegen, __crossbeam_channel_parse, select};
4-
use crossbeam_channel::{bounded, Receiver, Sender};
3+
use crossbeam_channel::{bounded, select, Receiver, Sender};
54

65
/// `ConcurrentJob` is a handle for some long-running computation
76
/// off the main thread. It can be used, indirectly, to wait for

0 commit comments

Comments
 (0)