smallint/Cargo.toml

23 lines
478 B
TOML
Raw Normal View History

2022-08-02 08:55:59 -04:00
[package]
name = "smallint"
2022-08-08 00:23:27 -04:00
version = "0.2.2"
2022-08-02 08:55:59 -04:00
edition = "2021"
2022-08-02 22:11:42 -04:00
authors = ["artofrev"]
description = "A library for optimized arbitrary precision integers."
license = "MIT"
2022-08-03 13:50:56 -04:00
repository = "https://gitlab.com/artofrev/smallint"
2022-08-02 22:11:42 -04:00
2022-08-02 08:55:59 -04:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-08-02 09:21:00 -04:00
num-bigint = { version = "0.4.3", optional = true }
[dev-dependencies]
num-bigint = { version = "0.4.3" }
[profile.test]
opt-level = 2