-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
35 lines (31 loc) · 1017 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
[package]
name = "rhai-ml"
version = "0.1.2"
edition = "2021"
authors = ["Chris McComb <[email protected]>"]
description = "Machine learning in the Rhai scripting language"
repository = "https://github.com/rhaiscript/rhai-ml"
homepage = "https://github.com/rhaiscript/rhai-ml"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["scripting", "rhai", "machine-learning", "scripting-language", "smartcore"]
categories = ["algorithms", "science"]
documentation = "https://docs.rs/rhai-ml"
build = "build.rs"
[features]
default = []
metadata = ["rhai/metadata"]
[dependencies]
rhai = ">=1.0.0"
smartstring = ">=1.0.0"
smartcorelib = { version = ">=0.3.0", package = "smartcore", features = ["serde"] }
bincode = { version = ">=1.0.0" }
[build-dependencies]
rhai = ">=1.0.0"
serde_json = ">=1.0.0"
serde = ">=1.0.0"
smartstring = ">=1.0.0"
smartcorelib = { version = ">=0.3.0", package = "smartcore", features = ["serde"] }
bincode = { version = ">=1.0.0" }
[package.metadata.docs.rs]
all-features = true