-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
28 lines (24 loc) · 922 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
[package]
name = "antic-sys"
version = "0.3.4"
edition = "2018"
authors = ["William Youmans <[email protected]>"]
description = "Bindings to the Antic library"
homepage = "https://github.com/wjyoumans/antic-sys"
repository = "https://github.com/wjyoumans/antic-sys"
license = "MIT OR Apache-2.0"
keywords = ["flint", "number-theory", "math"]
categories = ["algorithms", "external-ffi-bindings", "mathematics"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
derivative = "2.0"
libc = "0.2"
gmp-mpfr-sys = "1.4"
flint-sys = { path = "../flint-rs/flint-sys", version = "0.7", features = ["disable-make-check"] }
[features]
default = ["disable-make-check"]
disable-make-check = []
[target.'cfg(target_os = "windows")'.build-dependencies.winapi]
version = "0.3"
features = ["combaseapi", "knownfolders", "shlobj", "winbase", "winerror"]