-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
59 lines (54 loc) · 1.7 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
51
52
53
54
55
56
57
58
59
[package]
name = "vega_lite_4"
version = "0.7.0"
authors = [
"David Bernard <[email protected]>",
"François Mockers <[email protected]>",
"Thomas Aubry <[email protected]>",
]
edition = "2021"
license = "Apache-2.0"
description = "rust api for vega-lite v4"
repository = "https://github.com/procyon-rs/vega_lite_4.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.12"
derive_more = { version = "0.99", default-features = false, features = [
"from",
] }
showata = { version = "0.3", optional = true }
anyhow = { version = "1.0", optional = true }
ndarray = { version = "0.15", features = ["serde"], optional = true }
csv = { version = "1.1", optional = true }
rulinalg = { version = "0.4", optional = true }
nalgebra = { version = "0.32", features = ["serde-serialize"], optional = true }
polars = { version = "0.28", features = ["lazy"], optional = true }
[dev-dependencies]
csv = "1.1"
ndarray-rand = "0.14"
[features]
csv = ["dep:csv"]
default = ["show_vega", "csv", "ndarray"]
nalgebra = ["dep:nalgebra"]
ndarray = ["dep:ndarray"]
polars = ["dep:polars"]
rulinalg = ["dep:rulinalg"]
show_vega = ["dep:showata", "dep:anyhow"]
[[example]]
name = "from_nalgebra"
required-features = ["nalgebra"]
[[example]]
name = "from_rulinalg"
required-features = ["rulinalg"]
[[example]]
name = "from_polars"
required-features = ["polars"]
[package.metadata.release]
pre-release-commit-message = ":rocket: (cargo-release) version {{version}}"
tag-prefix = ""
tag-name = "{{prefix}}{{version}}"
tag-message = ":bookmark: {{version}}"