summary refs log tree commit diff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorSophie Forrest <git@sophieforrest.com>2024-08-30 23:35:45 +1200
committerSophie Forrest <git@sophieforrest.com>2024-08-30 23:35:45 +1200
commit13b95941183666fadd090314e4e9af33283084cd (patch)
tree2831968068a77b7a37a37d1356e9673d4dcc3275 /Cargo.toml
parentf5f789540ad7d3f7f4f855c9db69d65cfc190ee0 (diff)
feat(engine)!: implement u32 engine
Diffstat (limited to '')
-rw-r--r--Cargo.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index eca44e9..b3403d7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,12 +5,17 @@ edition = "2021"
 resolver = "2"
 
 [dependencies]
+byteorder = { optional = true, version = "1.4.3" }
 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"
+widestring = { default-features = false, optional = true, version = "1.0.2" }
 
 [features]
-default = ["utilities"]
+default = ["engine-u16", "engine-u32", "utilities"]
+bigint-engine = ["dep:byteorder", "dep:widestring"]
+engine-u16 = ["bigint-engine"]
+engine-u32 = ["bigint-engine"]
 utilities = []