[package] name = "nb2nl" version = "0.2.0" authors = ["Devin Jean "] edition = "2018" license = "MIT OR Apache-2.0" repository = "https://github.com/dragazo/nb2nl" documentation = "https://docs.rs/nb2nl" description = """ A small crate for translating NetsBlox code into Netlogo source. """ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "nb2nl" path = "src/lib.rs" [[bin]] name = "nb2nl" path = "src/main.rs" [build-dependencies] lalrpop = "0.19.6" [dependencies] xml-rs = "0.8.4" lalrpop-util = "0.19.6" lazy_static = "1.4.0" linked-hash-map = "0.5.4" regex = "1.5.4" ordslice = "0.3.0" serde = { version = "1.0.127", features = ["derive"] } serde_json = "1.0.66"