-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (38 loc) · 949 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "fixed-bigint"
version = "0.1.11"
authors = ["kaidokert <[email protected]>"]
documentation = "https://docs.rs/fixed-bigint"
edition = "2018"
description = """
Fixed-size big integer implementation for Rust
"""
keywords = ["mathematics", "numerics", "bignum"]
categories = [ "algorithms", "data-structures", "no-std"]
repository = "https://github.com/kaidokert/fixed-bigint-rs"
readme = "README.md"
homepage = "https://github.com/kaidokert/fixed-bigint-rs"
license = "Apache-2.0"
exclude = ["/.github/*"]
[dependencies.num-traits]
version = "0.2.19"
default-features = false
[dependencies.num-integer]
version = "0.1.45"
default-features = false
[dependencies.zeroize]
version = "1.8.1"
optional = true
default-features = false
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
overflow-checks = true
lto = false
panic = 'unwind'
incremental = false
codegen-units = 16
[features]
use-unsafe = []
default = []