deps: update dependencies

This commit is contained in:
liushuyu 2020-11-06 17:04:52 -07:00
parent 27aa9924f3
commit bdda585f12
No known key found for this signature in database
GPG Key ID: 23D1CE4534419437
5 changed files with 3336 additions and 2819 deletions

2230
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -9,12 +9,12 @@ description = "An adaptable installer for your application."
build = "build.rs" build = "build.rs"
[dependencies] [dependencies]
web-view = "0.6" web-view = "0.7"
hyper = "0.11.27" hyper = "0.11.27"
futures = "0.1.29" futures = "0.1.29"
mime_guess = "2.0" mime_guess = "2.0"
url = "2.1" url = "2.2"
reqwest = "0.9.22" reqwest = "0.9.22"
number_prefix = "0.4" number_prefix = "0.4"
@ -25,10 +25,10 @@ serde_json = "1.0"
toml = "0.5" toml = "0.5"
semver = {version = "0.10", features = ["serde"]} semver = {version = "0.11", features = ["serde"]}
regex = "1.3" regex = "1.4"
dirs = "2.0" dirs = "3.0"
zip = "0.5" zip = "0.5"
xz2 = "0.1" xz2 = "0.1"
tar = "0.4" tar = "0.4"
@ -44,14 +44,14 @@ walkdir = "2.3"
serde = "1.0" serde = "1.0"
serde_derive = "1.0" serde_derive = "1.0"
toml = "0.5" toml = "0.5"
which = "3.1" which = "4.0"
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["psapi", "winbase", "winioctl", "winnt"] } winapi = { version = "0.3", features = ["psapi", "winbase", "winioctl", "winnt"] }
widestring = "0.4.0" widestring = "0.4"
[target.'cfg(not(windows))'.dependencies] [target.'cfg(not(windows))'.dependencies]
sysinfo = "0.14" sysinfo = "0.16"
slug = "0.1" slug = "0.1"
[target.'cfg(windows)'.build-dependencies] [target.'cfg(windows)'.build-dependencies]

View File

@ -9,28 +9,28 @@
"postinstall": "node merge-strings.js" "postinstall": "node merge-strings.js"
}, },
"dependencies": { "dependencies": {
"@mdi/font": "^5.3.45", "@mdi/font": "^5.9.55",
"axios": "^0.19.2", "axios": "^0.21.1",
"buefy": "^0.8.20", "buefy": "^0.9.4",
"vue": "^2.6.11", "vue": "^2.6.12",
"vue-axios": "^2.1.5", "vue-axios": "^3.2.4",
"vue-i18n": "^8.18.1", "vue-i18n": "^8.24.1",
"vue-router": "^3.3.1" "vue-router": "^3.5.1"
}, },
"devDependencies": { "devDependencies": {
"@vue/cli-plugin-babel": "^4.4.1", "@vue/cli-plugin-babel": "^4.5.12",
"@vue/cli-plugin-eslint": "^4.4.1", "@vue/cli-plugin-eslint": "^4.5.12",
"@vue/cli-service": "^4.4.1", "@vue/cli-service": "^4.5.12",
"@vue/eslint-config-standard": "^5.1.2", "@vue/eslint-config-standard": "^6.0.0",
"babel-eslint": "^10.1.0", "babel-eslint": "^10.1.0",
"eslint": "^6.2.2", "eslint": "^7.22.0",
"eslint-plugin-import": "^2.20.2", "eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0", "eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1", "eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.0.1", "eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^6.2.2", "eslint-plugin-vue": "^7.7.0",
"express": "^4.17.1", "express": "^4.17.1",
"http-proxy-middleware": "^1.0.4", "http-proxy-middleware": "^1.0.6",
"vue-template-compiler": "^2.6.11" "vue-template-compiler": "^2.6.12"
} }
} }

View File

@ -78,7 +78,7 @@ span {
border-color: transparent; border-color: transparent;
color: #fff; color: #fff;
} }
.button.is-dark-green:hover { .button.is-dark-green:hover, .button.is-dark-green.is-hovered, .button.is-dark-green:focus {
background-color: #00a53f; background-color: #00a53f;
border-color: transparent; border-color: transparent;
color: #fff; color: #fff;

File diff suppressed because it is too large Load Diff