-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
50 lines (46 loc) · 1.85 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 = "rhai-sci"
version = "0.2.2"
edition = "2021"
authors = ["Chris McComb <[email protected]>"]
description = "Scientific computing in the Rhai scripting language"
repository = "https://github.com/rhaiscript/rhai-sci"
homepage = "https://github.com/rhaiscript/rhai-sci"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["scripting", "rhai", "scientific", "scripting-language", "matlab"]
categories = ["algorithms", "science"]
documentation = "https://docs.rs/rhai-sci"
build = "build.rs"
[features]
default = ["io", "rand", "nalgebra"]
metadata = ["rhai/metadata"]
io = ["polars", "url", "temp-file", "csv-sniffer", "minreq"]
nalgebra = ["nalgebralib", "linregress"]
rand = ["randlib"]
[dependencies]
rhai = ">=1.8.0"
nalgebralib = { version = "0.33.2", optional = true, package = "nalgebra" }
polars = { version = "0.45.1", optional = true }
url = { version = ">=2.0.0", optional = true }
temp-file = { version = "0.1.9", optional = true }
csv-sniffer = { version = "0.3.1", optional = true }
minreq = { version = "2.13.0", features = ["json-using-serde", "https"], optional = true }
randlib = { version = "0.8.5", optional = true, package = "rand" }
smartstring = ">=1.0"
linregress = { version = "0.5.0", optional = true }
[build-dependencies]
rhai = ">=1.8.0"
nalgebralib = { version = "0.33.2", optional = true, package = "nalgebra" }
polars = { version = "0.45.1", optional = true }
url = { version = ">=2.0.0", optional = true }
temp-file = { version = "0.1.9", optional = true }
csv-sniffer = { version = "0.3.1", optional = true }
minreq = { version = "2.13.0", features = ["json-using-serde", "https"], optional = true }
randlib = { version = "0.8.5", optional = true, package = "rand" }
serde_json = ">=1.0.0"
serde = ">=1.0.0"
smartstring = ">=1.0.0"
linregress = { version = "0.5.4", optional = true }
[package.metadata.docs.rs]
all-features = true