mirror of
https://gitlab.com/artofrev/smallint.git
synced 2024-11-12 16:31:17 -05:00
18 lines
395 B
TOML
18 lines
395 B
TOML
[package]
|
|
name = "smallint"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
authors = ["artofrev"]
|
|
description = "A library for optimized arbitrary precision integers."
|
|
license = "MIT"
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
num-bigint = { version = "0.4.3", optional = true }
|
|
|
|
|
|
[dev-dependencies]
|
|
num-bigint = { version = "0.4.3" }
|