File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed
Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -394,7 +394,7 @@ jobs:
394394 target : ${{ matrix.target }}
395395 components : clippy, rustfmt
396396 - name : Build Rust binary
397- run : cargo build --release --target ${{ matrix.target }} -p dependency-check-updates-cli
397+ run : cargo build --release --target ${{ matrix.target }} -p dependency-check-updates
398398 - name : Rename binary
399399 run : mv target/${{ matrix.target }}/release/dependency-check-updates${{ matrix.os == 'windows' && '.exe' || '' }} ${{ matrix.binary_name }}
400400 - name : Upload Asset
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ dependency-check-updates-core = { path = "crates/core" }
1313dependency-check-updates-node = { path = " crates/node" }
1414dependency-check-updates-rust = { path = " crates/rust" }
1515dependency-check-updates-python = { path = " crates/python" }
16- dependency-check-updates-cli = { path = " crates/cli" }
16+ dependency-check-updates = { path = " crates/cli" }
1717dependency-check-updates-testkit = { path = " crates/testkit" }
1818
1919# External
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ crate-type = ["cdylib"]
1313[dependencies ]
1414napi.workspace = true
1515napi-derive.workspace = true
16- dependency-check-updates-cli .workspace = true
16+ dependency-check-updates.workspace = true
1717tokio = { version = " 1.51" }
1818
1919[build-dependencies ]
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ readme = "../../README.md"
88publish = false
99
1010[dependencies ]
11- dependency-check-updates-cli .workspace = true
11+ dependency-check-updates.workspace = true
1212tokio.workspace = true
1313
1414[[bin ]]
Original file line number Diff line number Diff line change 1111 "test" : " cargo test && bun --workspaces run test" ,
1212 "check" : " bun run lint && bun run test" ,
1313 "clean" : " cargo clean" ,
14- "run" : " cargo run -p dependency-check-updates-cli --" ,
15- "run:release" : " cargo run -p dependency-check-updates-cli --release --"
14+ "run" : " cargo run -p dependency-check-updates --" ,
15+ "run:release" : " cargo run -p dependency-check-updates --release --"
1616 },
1717 "workspaces" : [
1818 " bridge/node"
You can’t perform that action at this time.
0 commit comments