Compare commits

..

1 Commits

Author SHA1 Message Date
Pascal Seitz
0b1add0ec6 move rand to optional dependencies
closes #1117
2021-07-21 17:49:24 +01:00

View File

@@ -12,12 +12,13 @@ description = "Fast field codecs used by tantivy"
common = { path = "../common/" }
tantivy-bitpacker = { path = "../bitpacker/" }
prettytable-rs = {version="0.8.0", optional= true}
rand = {version="0.8.3", optional= true}
[dev-dependencies]
more-asserts = "0.2.1"
rand = "0.8.3"
[features]
bin = ["prettytable-rs"]
bin = ["prettytable-rs", "rand"]
default = ["bin"]