[package] name = "fejix-compiler" version = "0.2.3" authors = ["MarkLagodych "] description = "Fejix Markup Language build tool" homepage = "https://fejix.dev" documentation = "https://docs.rs/fejix-compiler" repository = "https://github.com/FejixGUI/Fejix-compiler" readme = "README.md" license = "MIT" edition = "2021" build = "build.rs" include = [ "Cargo.toml", "build.rs", "src", "fejix_config.toml", "fejix_stdlib" ] [[bin]] # Fejix Compiler name = "fjc" path = "src/main.rs" [features] default = ["codegen_default", "perform_debug"] # Performs @__debug__{...} commands (only in DEBUG mode) perform_debug = [] # Code Generators codegen_default = ["codegen_c"] codegen_c = [] codegen_cpp = [] codegen_rust = [] [dependencies] colored = "^2.0" clap = { version = "^3.0", features = ["std", "color"] } semver = "^1.0" toml = "^0.5" serde = { version = "^1.0", features = ["derive"] } regex = "^1.5" bitflags = "^1.3" glob = "^0.3.0"