formaty/Cargo.toml
Joey Hines 9e5b0aafbd
Int formatting working
+ Using num-bigint to support arbitrarily sized ints
+ Added formatting tests
2021-10-09 08:42:17 -06:00

13 lines
301 B
TOML

[package]
name = "formaty"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3.23"
serde = { version = "1.0", features = ["derive"] }
toml = "0.5.8"
byteorder = "1.4.3"
num-bigint = "0.4"