[package] name = "swlang" version = "0.0.12-pre-alpha" edition = "2021" license = "MIT" description = "A simple configuration language written in Rust" authors = ["Gustavo Mendonça, "] repository = "https://github.com/swxtz/swlang" documentation = "https://docs.rs/crate/swlang" [package.metadata.scripts] run = "cargo run" check = "cargo check" build = "cargo build" release = "cargo build --release" publish = "cargo publish" publish-dirty = "cargo publish --allow-dirty" doc = "cargo doc --no-deps --open" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.82" chrono = "0.4.38" clap = { version = "4.5.3", features = ["derive"] } colored = "2.1.0" miette = "7.2.0" reqwest = "0.11.26" tokio = { version = "1.36.0", features = ["full"] }