-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (35 loc) · 961 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
[package]
name = "wll"
version = "0.1.1"
authors = ["miroox <[email protected]>"]
edition = "2018"
license = "MIT"
description = "A Wolfram LibraryLink interface."
readme = "README.md"
repository = "https://github.com/miRoox/wll-rs/"
categories = ["api-bindings", "development-tools::ffi"]
keywords = ["wolfram", "mathematica", "librarylink", "ffi", "wrapper"]
exclude = [ "*.nb" ]
[package.metadata.docs.rs]
features = ["macros"]
rustdoc-args = ["--cfg", "docsrs"]
[workspace]
members = [
"sys",
"macros",
"examples/basic"
]
[features]
default = []
macros = ["wll-macros"]
num-complex-type = ["num-complex"]
auto-link = ["wll-sys/auto-link"]
[dependencies]
wll-sys = { version = "0.1", path = "sys" }
wll-macros = { version = "0.1", path = "macros", optional = true }
num-complex = { version = "0.3", optional = true}
[dev-dependencies]
trybuild = { version = "1.0", features = ["diff"] }
[[test]]
name = "tests"
path = "tests/run-tests.rs"