-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
33 lines (29 loc) · 944 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
[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.13"
opener = "^0.4"
anyhow = "^1.0"
#arrow = {version = "0.13.0", optional = true} # nightly
image = {version = "^0.23", optional = true}
nalgebra = {version = "^0.26", optional = true}
num-traits = {version = "^0.2", optional = true}
ndarray = {version = "^0.15", optional = true}
[dev-dependencies]
mime = "0.3.14"
nalgebra = "0.26.1"
[features]
default = []
all = ["show_nalgebra", "show_ndarray", "show_image"]
show_nalgebra = ["nalgebra", "num-traits"]
show_ndarray = ["ndarray"]
show_image = ["image"]