Accept csv from stdin

This commit is contained in:
Clément Renault
2020-08-06 12:38:42 +02:00
parent d3b1096510
commit 405a71d3a4
3 changed files with 63 additions and 7 deletions

20
Cargo.lock generated
View File

@ -323,6 +323,16 @@ dependencies = [
"itertools",
]
[[package]]
name = "crossbeam-channel"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09ee0cc8804d5393478d743b035099520087a5186f3b93fa58cec08fa62407b6"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
version = "0.7.3"
@ -987,6 +997,7 @@ dependencies = [
"memmap",
"once_cell",
"oxidized-mtbl",
"pipe",
"rayon",
"roaring",
"serde",
@ -1303,6 +1314,15 @@ version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pipe"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcd11e042e056991b5df9c0c5ae6bd0cce219b74294c40f65b89f40f7030106c"
dependencies = [
"crossbeam-channel",
]
[[package]]
name = "pkg-config"
version = "0.3.17"