aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-12-18 09:45:20 +0000
committerAleksey Kladov <[email protected]>2018-12-18 09:52:17 +0000
commit193992fd14e88d91a3695f10204232d4c81192dc (patch)
treefced7beb98137d8675e0f864c7b41c909b97ebf5 /Cargo.lock
parent4a1ab869b7aaa38d55e8995ec1b49e72b55a5965 (diff)
move thread worker to a separate crate
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock10
1 files changed, 10 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 56d5c65b9..15209184d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -700,6 +700,7 @@ dependencies = [
700 "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 700 "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
701 "test_utils 0.1.0", 701 "test_utils 0.1.0",
702 "text_unit 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 702 "text_unit 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
703 "thread_worker 0.1.0",
703 "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 704 "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
704 "url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 705 "url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
705 "walkdir 2.2.6 (registry+https://github.com/rust-lang/crates.io-index)", 706 "walkdir 2.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1117,6 +1118,15 @@ dependencies = [
1117] 1118]
1118 1119
1119[[package]] 1120[[package]]
1121name = "thread_worker"
1122version = "0.1.0"
1123dependencies = [
1124 "crossbeam-channel 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
1125 "drop_bomb 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
1126 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
1127]
1128
1129[[package]]
1120name = "threadpool" 1130name = "threadpool"
1121version = "1.7.1" 1131version = "1.7.1"
1122source = "registry+https://github.com/rust-lang/crates.io-index" 1132source = "registry+https://github.com/rust-lang/crates.io-index"