[package] name = "jcargo" version = "0.2.0" edition = "2021" include = ["src/**/*", "LICENSE", "README.md"] authors = ["Guillaume Anthouard <25181283+Gui-Yom@users.noreply.github.com>"] rust-version = "1.56" description = "An attempt at making an equivalent to Rust's excellent build tool for the JVM ecosystem." repository = "https://github.com/Gui-Yom/jcargo/" homepage = "https://github.com/Gui-Yom/jcargo/" license = "MIT OR Apache-2.0" keywords = ["build", "java", "kotlin", "jvm"] categories = ["command-line-utilities", "development-tools"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [profile.release] codegen-units = 4 lto = "thin" [dependencies] anyhow = "1" async-oncecell = "0.2" async-recursion = "1" quick-xml = { version = "0.22", features = ["serialize"] } lazy-regex = "2" regex = "1" reqwest = { version = "0.11", features = ["stream"] } semver = { version = "1", features = ["serde"] } serde = { version = "1", features = ["derive"] } structopt = { version = "0.3", features = ["color"] } tokio = { version = "1", features = ["full"] } toml = "0.5" url = "2" walkdir = "2"