diff options
Diffstat (limited to 'oryxc/Cargo.toml')
| -rw-r--r-- | oryxc/Cargo.toml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/oryxc/Cargo.toml b/oryxc/Cargo.toml index a7ab1e4..4230086 100644 --- a/oryxc/Cargo.toml +++ b/oryxc/Cargo.toml @@ -8,8 +8,14 @@ boxcar = "0.2.14" clap = { version = "4", features = ["derive"] } crossbeam-deque = "0.8.6" dashmap = "6.1.0" -# num-rational = "0.4.2" phf = { version = "0.13.1", features = ["macros"] } soa-rs = "0.9.1" unicode-normalization = "0.1.25" unicode-width = "0.2.2" + +[features] +fetch = ["dep:ureq", "dep:zip"] + +[build-dependencies] +ureq = { version = "3.2.0", optional = true } +zip = { version = "8.2.0", optional = true } |