forked from rustviz/rustviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
19 lines (18 loc) · 818 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "rustviz"
version = "0.1.0"
authors = [
"Marcelo Almeida <[email protected]>", "Gongming (Gabriel) Luo <[email protected]>",
"Ke Du <[email protected]>", "Yingying Zhu <[email protected]>",
"Haochen Zhang <[email protected]>", "Vishnu Reddy <[email protected]>",
"Yu Pan <[email protected]>"
]
edition = "2018"
license = "MIT"
description = "A tool that allows teachers to generate an interactive timeline depicting ownership and borrowing events for each variable in a Rust code example"
readme = "README.md"
repository = "https://github.com/rustviz/rustviz"
exclude = ["src/svg_generator/README.md", "src/svg_generator/example.png"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rustviz-svg = { path = "src/svg_generator/" }