mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-22 09:55:40 +01:00
Add Travis CI testing, update README
This commit is contained in:
parent
b88bfb1a22
commit
4d5a4ceb84
3
.travis.yml
Normal file
3
.travis.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
language: rust
|
||||||
|
rust:
|
||||||
|
- stable
|
52
Cargo.lock
generated
52
Cargo.lock
generated
@ -305,6 +305,32 @@ dependencies = [
|
|||||||
"crc 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"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]]
|
[[package]]
|
||||||
name = "log"
|
name = "log"
|
||||||
version = "0.3.9"
|
version = "0.3.9"
|
||||||
@ -1010,32 +1036,6 @@ dependencies = [
|
|||||||
"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"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]]
|
[[package]]
|
||||||
name = "zip"
|
name = "zip"
|
||||||
version = "0.2.8"
|
version = "0.2.8"
|
||||||
|
@ -1,7 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "yuzu-installer"
|
name = "liftinstall"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["James <jselby@jselby.net>"]
|
authors = ["James <jselby@jselby.net>"]
|
||||||
|
repository = "https://github.com/j-selby/liftinstall.git"
|
||||||
|
documentation = "https://liftinstall.jselby.net"
|
||||||
|
description = "An adaptable installer for your application."
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
web-view = "0.1.2"
|
web-view = "0.1.2"
|
||||||
|
12
README.md
12
README.md
@ -1,6 +1,10 @@
|
|||||||
LiftInstall
|
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
|
An installer for your application. Designed to be customisable to the core, hookable from external
|
||||||
applications, and have a decent UI.
|
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
|
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
|
License
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user