-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
37 lines (32 loc) · 1018 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
[package]
name = "showata"
version = "0.3.3-dev"
authors = ["David Bernard <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
description = "A library of to show data (in browser, evcxr_jupyter) as table, chart..."
repository = "https://github.com/procyon-rs/showata"
readme = "README.md"
#category = ["visualization"]
keywords = ["evcxr", "jupyter", "visualization", "plot", "vega"]
[dependencies]
base64 = "^0.22"
opener = "^0.7"
anyhow = "^1.0"
#arrow = {version = "0.13.0", optional = true} # nightly
image = { version = "^0.25", optional = true }
nalgebra = { version = "^0.33", optional = true }
num-traits = { version = "^0.2", optional = true }
ndarray = { version = "^0.16", optional = true }
[dev-dependencies]
mime = "0.3"
nalgebra = "0.33"
[features]
default = []
all = ["show_nalgebra", "show_ndarray", "show_image"]
show_nalgebra = ["nalgebra", "num-traits"]
show_ndarray = ["ndarray"]
show_image = ["image"]
[[example]]
name = "sample_nalgebra"
required-features = ["nalgebra"]