Skip to content

Commit

Permalink
chore: remove covector deps
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Aug 15, 2023
1 parent 33ea4bc commit 6a0cf97
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 86 deletions.
147 changes: 71 additions & 76 deletions .changes/config.json
Original file line number Diff line number Diff line change
@@ -1,83 +1,78 @@
{
"gitSiteUrl": "https://www.github.com/tauri-apps/nsis-tauri-utils/",
"timeout": 3600000,
"pkgManagers": {
"rust": {
"version": true,
"getPublishedVersion": "node ../../.scripts/package-latest-version.js ${ pkgFile.name } ${ pkgFile.version }",
"publish": [
{
"command": "cargo build --release",
"dryRunCommand": true
},
{
"command": "echo 'SHA1: `'",
"dryRunCommand": true,
"pipe": true
},
{
"command": "powershell -Command 'Get-FileHash -Algorithm SHA1 \"../../target/i686-pc-windows-msvc/release/${ pkg.pkg }.dll\" | Select -ExpandProperty Hash'",
"dryRunCommand": true,
"pipe": true
},
{
"command": "echo '`'",
"dryRunCommand": true,
"pipe": true
}
],
"postpublish": [
"git tag ${ pkg.pkg }-v${ pkgFile.versionMajor } -f",
"git tag ${ pkg.pkg }-v${ pkgFile.versionMajor }.${ pkgFile.versionMinor } -f",
"git push --tags -f"
]
}
},
"packages": {
"nsis_tauri_utils": {
"path": "./crates/nsis-tauri-utils",
"manager": "rust",
"dependencies": [
"nsis_download",
"nsis_process",
"nsis_semvercompare"
],
"assets": [
{
"path": "target/i686-pc-windows-msvc/release/${ pkg.pkg }.dll",
"name": "${ pkg.pkg }.dll"
}
]
"gitSiteUrl": "https://www.github.com/tauri-apps/nsis-tauri-utils/",
"timeout": 3600000,
"pkgManagers": {
"rust": {
"version": true,
"getPublishedVersion": "node ../../.scripts/package-latest-version.js ${ pkgFile.name } ${ pkgFile.version }",
"publish": [
{
"command": "cargo build --release",
"dryRunCommand": true
},
"nsis_download": {
"path": "./crates/nsis-download",
"manager": "rust",
"assets": [
{
"path": "target/i686-pc-windows-msvc/release/${ pkg.pkg }.dll",
"name": "${ pkg.pkg }.dll"
}
]
{
"command": "echo 'SHA1: `'",
"dryRunCommand": true,
"pipe": true
},
"nsis_process": {
"path": "./crates/nsis-process",
"manager": "rust",
"assets": [
{
"path": "target/i686-pc-windows-msvc/release/${ pkg.pkg }.dll",
"name": "${ pkg.pkg }.dll"
}
]
{
"command": "powershell -Command 'Get-FileHash -Algorithm SHA1 \"../../target/i686-pc-windows-msvc/release/${ pkg.pkg }.dll\" | Select -ExpandProperty Hash'",
"dryRunCommand": true,
"pipe": true
},
"nsis_semvercompare": {
"path": "./crates/nsis-semvercompare",
"manager": "rust",
"assets": [
{
"path": "target/i686-pc-windows-msvc/release/${ pkg.pkg }.dll",
"name": "${ pkg.pkg }.dll"
}
]
{
"command": "echo '`'",
"dryRunCommand": true,
"pipe": true
}
],
"postpublish": [
"git tag ${ pkg.pkg }-v${ pkgFile.versionMajor } -f",
"git tag ${ pkg.pkg }-v${ pkgFile.versionMajor }.${ pkgFile.versionMinor } -f",
"git push --tags -f"
]
}
},
"packages": {
"nsis_tauri_utils": {
"path": "./crates/nsis-tauri-utils",
"manager": "rust",
"assets": [
{
"path": "target/i686-pc-windows-msvc/release/${ pkg.pkg }.dll",
"name": "${ pkg.pkg }.dll"
}
]
},
"nsis_download": {
"path": "./crates/nsis-download",
"manager": "rust",
"assets": [
{
"path": "target/i686-pc-windows-msvc/release/${ pkg.pkg }.dll",
"name": "${ pkg.pkg }.dll"
}
]
},
"nsis_process": {
"path": "./crates/nsis-process",
"manager": "rust",
"assets": [
{
"path": "target/i686-pc-windows-msvc/release/${ pkg.pkg }.dll",
"name": "${ pkg.pkg }.dll"
}
]
},
"nsis_semvercompare": {
"path": "./crates/nsis-semvercompare",
"manager": "rust",
"assets": [
{
"path": "target/i686-pc-windows-msvc/release/${ pkg.pkg }.dll",
"name": "${ pkg.pkg }.dll"
}
]
}
}
}
20 changes: 10 additions & 10 deletions crates/nsis-tauri-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
name = "nsis-tauri-utils"
version = "0.1.1"

[package.authors]
workspace = true
[package.authors]
workspace = true

[package.edition]
workspace = true
[package.edition]
workspace = true

[package.license]
workspace = true
[package.license]
workspace = true

[lib]
crate-type = [ "cdylib" ]
crate-type = ["cdylib"]

[dependencies]
nsis-download = { version = "*", path = "../nsis-download" }
nsis-process = { version = "*", path = "../nsis-process" }
nsis-semvercompare = { version = "*", path = "../nsis-semvercompare" }
nsis-download = { path = "../nsis-download" }
nsis-process = { path = "../nsis-process" }
nsis-semvercompare = { path = "../nsis-semvercompare" }

0 comments on commit 6a0cf97

Please sign in to comment.