[package] name = "shrimplang" version = "0.1.0" edition = "2021" description = "Toy programming language" license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] logos = "0.13" rustyline = "12" thiserror = "1.0.46" [features] with-file-history = [] default = ["with-file-history"] debug = [] [[bin]] name = "shrimp" path = "src/main.rs"