-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Cargo.toml
33 lines (29 loc) · 850 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
[package]
name = "GSL"
version = "7.0.0"
authors = ["Guillaume Gomez <[email protected]>"]
description = "A rust binding for the GSL (the GNU scientific library)"
repository = "https://github.com/GuillaumeGomez/rust-GSL"
documentation = "https://docs.rs/crate/GSL/"
readme = "README.md"
keywords = ["mathematics", "library", "GSL"]
license = "GPL-3.0+"
edition = "2021"
[dependencies]
sys = { path = "gsl-sys", package = "GSL-sys", version = "3.0.0" }
paste = "1.0"
[features]
v2_1 = ["sys/v2_1"]
v2_2 = ["sys/v2_2", "v2_1"]
v2_3 = ["sys/v2_3", "v2_2"]
v2_4 = ["sys/v2_4", "v2_3"]
v2_5 = ["sys/v2_5", "v2_4"]
v2_6 = ["sys/v2_6", "v2_5"]
v2_7 = ["sys/v2_7", "v2_6"]
dox = ["v2_7", "sys/dox"]
[package.metadata.docs.rs]
features = ["dox"]
rustdoc-args = ["--generate-link-to-definition"]
[lib]
name = "rgsl"
crate-type = ["dylib", "rlib"]