2022-08-02 08:55:59 -04:00
|
|
|
[package]
|
|
|
|
name = "smallint"
|
2022-08-02 23:33:31 -04:00
|
|
|
version = "0.2.0"
|
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-02 23:37:59 -04:00
|
|
|
repository = "https://github.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" }
|