[package] name = "install-framework" version = "1.0.0" authors = ["Yuri Edward "] edition = "2018" description = "A simple and lightweight cross-platform install framework written in Rust" license = "MIT" repository = "https://gitlab.com/Yuri6037/install-framework" readme = "./README.MD" keywords = ["framework", "install"] categories = ["development-tools"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] keep-cache = ["install-framework-base/keep-cache", "install-framework-gui/keep-cache", "install-framework-cli/keep-cache"] gui = ["install-framework-gui"] cli = ["install-framework-cli"] [dependencies] install-framework-core = { path = "./core", version = "1.0.0" } install-framework-base = { path = "./base", version = "1.0.0" } [dependencies.install-framework-gui] version = "1.0.0" path = "./gui" optional = true [dependencies.install-framework-cli] version = "1.0.0" path = "./cli" optional = true [workspace] members = [ "core", "cli", "base", "gui" ]