diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..a493f81 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,3 @@ +language: rust +rust: + - stable diff --git a/Cargo.lock b/Cargo.lock index 9b8b5b1..a641e68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -305,6 +305,32 @@ dependencies = [ "crc 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "liftinstall" +version = "0.1.0" +dependencies = [ + "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.11.15 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "includedir 0.2.2 (git+https://github.com/j-selby/includedir.git?rev=4e25ad8)", + "includedir_codegen 0.2.2 (git+https://github.com/j-selby/includedir.git?rev=e6db212)", + "mime_guess 1.8.3 (registry+https://github.com/rust-lang/crates.io-index)", + "nfd 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "number_prefix 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "reqwest 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)", + "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-core 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "web-view 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "zip 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "log" version = "0.3.9" @@ -1010,32 +1036,6 @@ dependencies = [ "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "yuzu-installer" -version = "0.1.0" -dependencies = [ - "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.11.15 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "includedir 0.2.2 (git+https://github.com/j-selby/includedir.git?rev=4e25ad8)", - "includedir_codegen 0.2.2 (git+https://github.com/j-selby/includedir.git?rev=e6db212)", - "mime_guess 1.8.3 (registry+https://github.com/rust-lang/crates.io-index)", - "nfd 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "number_prefix 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "phf 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "reqwest 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)", - "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-core 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "toml 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "web-view 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zip 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "zip" version = "0.2.8" diff --git a/Cargo.toml b/Cargo.toml index 59a938b..3873720 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,10 @@ [package] -name = "yuzu-installer" +name = "liftinstall" version = "0.1.0" authors = ["James "] +repository = "https://github.com/j-selby/liftinstall.git" +documentation = "https://liftinstall.jselby.net" +description = "An adaptable installer for your application." [dependencies] web-view = "0.1.2" diff --git a/README.md b/README.md index 43274f1..7f77d53 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ LiftInstall =========== +[![Build Status](https://travis-ci.org/j-selby/liftinstall.svg?branch=master)](https://travis-ci.org/j-selby/liftinstall) + +- Usage Documentation: https://liftinstall.jselby.net/ + An installer for your application. Designed to be customisable to the core, hookable from external applications, and have a decent UI. @@ -19,6 +23,14 @@ Add your logo to `static/img/logo.png`, modify the configuration file, then run: cargo build ``` +LiftInstall should build on both Stable and Nightly Rust. + +Contributing +------------ + +PRs are very welcome. Code should be run through [Rustfmt](https://github.com/rust-lang-nursery/rustfmt) + before submission. + License -------