[package] name = "rustviz-svg" version = "0.1.0" authors = [ "Gabriel Luo ", "Ke Du ", "Yingying Zhu ", "Marcelo Almeida ", "Haochen Zhang ", "Vishnu Reddy " ] 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" [lib] name = "rustviz_lib" path = "lib.rs" # The development profile, used for `cargo build` [profile.dev] opt-level = 0 # Controls the --opt-level the compiler builds with debug = true # Controls whether the compiler passes `-g` # The release profile, used for `cargo build --release` [profile.release] opt-level = 3 debug = false [dependencies] handlebars = "3.0.1" serde = { version = "1.0", features = ["derive"] }