Added num/malachite features for format crate (#109)

This commit is contained in:
Harsha Teja Kanna 2023-12-27 21:52:22 -06:00 committed by GitHub
parent 29c4728dbe
commit 8731e9fc50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 14 additions and 5 deletions

View file

@ -8,10 +8,14 @@ repository = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
[features]
default = ["malachite-bigint"]
[dependencies]
rustpython-literal = { workspace = true }
bitflags = { workspace = true }
itertools = { workspace = true }
malachite-bigint = { workspace = true }
malachite-bigint = { workspace = true, optional = true }
num-bigint = { workspace = true, optional = true }
num-traits = { workspace = true }