diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-03-11 00:50:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-11 00:50:57 +0100 |
| commit | f149bfa62cf4b2c6ee1033f7918ccbe8c452702b (patch) | |
| tree | 96482de4cb331268bd4afc5753166b7a9cbd2a3c /oryxc/Cargo.toml | |
| parent | e59c54f8bc640c7dc8ccef96d538e728c47bc08e (diff) | |
| parent | 301ee908e1409c6d42e85c9431d01a92be676753 (diff) | |
Merge pull request #2 from Mango0x45/buildscript
Buildscript
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 } |