-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
50 lines (41 loc) · 1.13 KB
/
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
45
46
47
48
49
50
[package]
name = "inertia-core"
version = "0.4.0"
edition = "2021"
authors = ["William Youmans <[email protected]>"]
description = "Core functionality of the Inertia crate with high level wrappers for FLINT, Arb, and Antic."
homepage = "https://github.com/wjyoumans/inertia-core"
repository = "https://github.com/wjyoumans/inertia-core"
license = "GPL-3.0-or-later"
keywords = ["flint", "real", "complex", "number-theory", "math"]
categories = ["algorithms", "external-ffi-bindings", "mathematics"]
readme = "README.md"
[features]
default = []
serde = ["dep:serde"]
[dependencies]
libc = "0.2"
thiserror = "1.0"
[dependencies.flint-sys]
path = "../../flint-rs/flint-sys"
version = "0.7"
features = ["disable-make-check"]
[dependencies.arb-sys]
path = "../../arb-sys"
version = "0.3"
features = ["disable-make-check"]
[dependencies.antic-sys]
path = "../../antic-sys"
version = "0.3"
features = ["disable-make-check"]
[dependencies.inertia-algebra]
path = "../inertia-algebra"
version = "0.1"
[dependencies.serde]
optional = true
version = "1.0"
features = ["derive"]
[dev-dependencies]
bincode = "1.3"
quickcheck = "1.0"
quickcheck_macros = "1.0"