forked from SiegeLord/RustGnuplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (29 loc) · 738 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
38
39
40
41
42
43
44
[package]
name = "gnuplot"
version = "0.0.21"
license = "LGPL-3.0"
repository = "https://github.com/SiegeLord/RustGnuplot"
documentation = "http://siegelord.github.io/RustGnuplot/doc/gnuplot/index.html"
keywords = ["plots", "graphics"]
authors = [ "SiegeLord <[email protected]>" ]
description = "Rust gnuplot controller"
[lib]
name = "gnuplot"
path = "src/lib.rs"
[dev-dependencies]
argparse-rs = "=0.1.0"
[[example]]
name = "example1"
path = "examples/example1.rs"
[[example]]
name = "example2"
path = "examples/example2.rs"
[[example]]
name = "example3"
path = "examples/example3.rs"
[[example]]
name = "example4"
path = "examples/example4.rs"
[[example]]
name = "animation_example"
path = "examples/animation_example.rs"