-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
38 lines (34 loc) · 1.22 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
[package]
name = "vega_lite_3"
version = "0.3.2-dev"
authors = ["David Bernard <david.bernard.31@gmail.com>", "François Mockers <mockersf@gmail.com>", "Thomas Aubry <github.thomaub@gmail.com>"]
edition = "2018"
license = "Apache-2.0"
description = "rust api for vega-lite v3"
repository = "https://github.com/procyon-rs/vega_lite_3.rs"
readme = "README.md"
categories = ["visualization"]
keywords = ["visualization", "plot", "vega", "graphs", "charts"]
[dependencies]
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
derive_builder = "0.10.2"
derive_more = {version = "0.99", default-features = false, features = ["from"]}
showata = {version = "0.3.2", optional = true}
anyhow = {version = "1.0.22", optional = true }
ndarray = {version = "0.14", features = ["serde"], optional = true}
csv = {version = "1.1", optional = true}
rulinalg = {version ="0.4.2", optional=true}
nalgebra = {version ="0.27.1", features = ["serde-serialize"], optional=true}
[dev-dependencies]
csv = "1.1"
ndarray-rand = "0.13"
[features]
show_vega = ["showata", "anyhow"]
default = ["show_vega", "csv", "ndarray"]
[[example]]
name = "from_nalgebra"
required-features = ["nalgebra"]
[[example]]
name = "from_rulinalg"
required-features = ["rulinalg"]