diff options
| author | Sophie Forrest <git@sophieforrest.com> | 2024-08-30 23:35:45 +1200 |
|---|---|---|
| committer | Sophie Forrest <git@sophieforrest.com> | 2024-08-30 23:35:45 +1200 |
| commit | f5f789540ad7d3f7f4f855c9db69d65cfc190ee0 (patch) | |
| tree | f532988e9a35a0d2c58efbad9daf6e66288f4a1f /Cargo.toml | |
| parent | c9ab8d38765c7c80f2ea9083ce8d326f407110ac (diff) | |
feat(engine): allow choosing engine per executor call
Diffstat (limited to '')
| -rw-r--r-- | Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml index 3d83881..eca44e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,11 +6,11 @@ resolver = "2" [dependencies] clap = { features = ["derive"], version = "4.3.21" } +num-traits = "0.2.16" fs-err = "2.9.0" miette = { features = ["fancy"], version = "5.10.0" } thiserror = "1.0.44" [features] -default = ["utilities", "u8-engine"] +default = ["utilities"] utilities = [] -u8-engine = [] |