eitri-cli 1.9.0-beta.4 → 1.9.0-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bitbucket-pipelines.yml
CHANGED
|
@@ -66,8 +66,9 @@ pipelines:
|
|
|
66
66
|
- export PATH="/root/.cargo/bin:${PATH}"
|
|
67
67
|
- rustup --version
|
|
68
68
|
- rustup target add x86_64-pc-windows-gnu
|
|
69
|
+
- rustup target add x86_64-unknown-linux-gnu
|
|
69
70
|
- cd eitri-cli-v2
|
|
70
|
-
-
|
|
71
|
+
- yarn install
|
|
71
72
|
- yarn install:win32
|
|
72
73
|
- rm -rf target
|
|
73
74
|
- cd ..
|
package/eitri-cli-v2/Cargo.lock
CHANGED
|
@@ -504,6 +504,7 @@ dependencies = [
|
|
|
504
504
|
"httpmock",
|
|
505
505
|
"neon",
|
|
506
506
|
"once_cell",
|
|
507
|
+
"openssl",
|
|
507
508
|
"reqwest",
|
|
508
509
|
"serde",
|
|
509
510
|
"serde_derive",
|
|
@@ -1344,6 +1345,15 @@ version = "0.1.5"
|
|
|
1344
1345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
1346
|
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
1346
1347
|
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "openssl-src"
|
|
1350
|
+
version = "300.2.3+3.2.1"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "5cff92b6f71555b61bb9315f7c64da3ca43d87531622120fea0195fc761b4843"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"cc",
|
|
1355
|
+
]
|
|
1356
|
+
|
|
1347
1357
|
[[package]]
|
|
1348
1358
|
name = "openssl-sys"
|
|
1349
1359
|
version = "0.9.101"
|
|
@@ -1352,6 +1362,7 @@ checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff"
|
|
|
1352
1362
|
dependencies = [
|
|
1353
1363
|
"cc",
|
|
1354
1364
|
"libc",
|
|
1365
|
+
"openssl-src",
|
|
1355
1366
|
"pkg-config",
|
|
1356
1367
|
"vcpkg",
|
|
1357
1368
|
]
|
package/eitri-cli-v2/Cargo.toml
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"build": "cargo-cp-artifact -nc index.unix.node -- cargo build --message-format=json-render-diagnostics",
|
|
7
|
+
"build": "cargo-cp-artifact -nc index.unix.node -- cargo build --message-format=json-render-diagnostics --target x86_64-unknown-linux-gnu",
|
|
8
8
|
"build:win32": "cargo-cp-artifact -nc index.win32.node -- cargo build --message-format=json-render-diagnostics --target x86_64-pc-windows-gnu",
|
|
9
9
|
"build-debug": "npm run build --",
|
|
10
10
|
"build-release": "npm run build -- --release",
|