[package] name = "chomatter_cli" version = "0.0.4" edition = "2021" license = "MIT" authors = ["Jordy Fontoura "] description = "Compiler for the language" repository = "https://github.com/jordyfontoura/flower" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] json = "0.12.4" serde = { version="1.0.145", features = ["derive"] } serde_json = "1.0.86" [dependencies.chomatter_commons] path = "./chomatter_commons" version = "0.0.1" [dependencies.chomatter_lexer] path = "./chomatter_lexer" version = "0.0.1" [dependencies.chomatter_syntaxer] path = "./chomatter_syntaxer" version = "0.0.1" [workspace] members = [ "chomatter_commons", "chomatter_lexer", "chomatter_syntaxer", ] [[bin]] name = "chomatter" path = "src/main.rs"