mirror of
https://github.com/encounter/objdiff.git
synced 2025-06-06 22:53:33 +00:00
Replace some git dependencies with cargo registry
This commit is contained in:
parent
fe886f862d
commit
3d7f2b70dc
8
.github/workflows/build.yaml
vendored
8
.github/workflows/build.yaml
vendored
@ -268,7 +268,7 @@ jobs:
|
||||
name: Check package versions
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ build-cli, build-gui ]
|
||||
needs: [ build-cli, build-gui, build-wasm ]
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
@ -334,7 +334,7 @@ jobs:
|
||||
|
||||
release-cargo:
|
||||
name: Release (Cargo)
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
if: 'false' # TODO re-enable when all dependencies are published
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ check-version ]
|
||||
steps:
|
||||
@ -345,7 +345,7 @@ jobs:
|
||||
- name: Publish
|
||||
env:
|
||||
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
||||
run: cargo publish -p objdiff-core --dry-run
|
||||
run: cargo publish -p objdiff-core
|
||||
|
||||
release-npm:
|
||||
name: Release (npm)
|
||||
@ -380,4 +380,4 @@ jobs:
|
||||
;;
|
||||
esac
|
||||
echo "Publishing version $version with tag '$tag'..."
|
||||
npm publish --provenance --access public --tag "$tag" --dry-run
|
||||
npm publish --provenance --access public --tag "$tag"
|
||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -956,7 +956,8 @@ checksum = "c2e06f9bce634a3c898eb1e5cb949ff63133cbb218af93cc9b38b31d6f3ea285"
|
||||
[[package]]
|
||||
name = "cwextab"
|
||||
version = "1.0.4"
|
||||
source = "git+https://github.com/CelestialAmber/cwextab.git#a81d42980912afebf6d3243dddf7309b138c4e28"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "78a1be2fee628a2f9109d28b6786ae591ff173d5b02118821cf4bd9a2d77ddfe"
|
||||
dependencies = [
|
||||
"thiserror 2.0.11",
|
||||
]
|
||||
@ -4233,7 +4234,8 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "rlwinmdec"
|
||||
version = "1.1.0"
|
||||
source = "git+https://github.com/CelestialAmber/rlwinmdec.git#06e9a86eec1f21466a97cc48a752e9177985e1eb"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a87635cbde819eb81b94808ad035491693c7a07ee076ceb49d06f964e8ac38e3"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
]
|
||||
|
@ -140,9 +140,9 @@ gimli = { version = "0.31", default-features = false, features = ["read"], optio
|
||||
|
||||
# ppc
|
||||
cwdemangle = { version = "1.0", optional = true }
|
||||
cwextab = { version = "1.0", optional = true, git = "https://github.com/CelestialAmber/cwextab.git" }
|
||||
cwextab = { version = "1.0", optional = true }
|
||||
ppc750cl = { version = "0.3", optional = true }
|
||||
rlwinmdec = { version = "1.1", optional = true, git = "https://github.com/CelestialAmber/rlwinmdec.git" }
|
||||
rlwinmdec = { version = "1.1", optional = true }
|
||||
|
||||
# mips
|
||||
rabbitizer = { git = "https://github.com/Decompollaborate/rabbitizer.git", branch = "🦀", default-features = false, features = ["all_extensions"], optional = true }
|
||||
|
@ -42,7 +42,7 @@ png = "0.17"
|
||||
pollster = "0.4"
|
||||
regex = "1.11"
|
||||
rfd = { version = "0.15" } #, default-features = false, features = ['xdg-portal']
|
||||
rlwinmdec = { version = "1.0", git = "https://github.com/CelestialAmber/rlwinmdec.git" }
|
||||
rlwinmdec = "1.1"
|
||||
ron = "0.8"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
time = { version = "0.3", features = ["formatting", "local-offset"] }
|
||||
|
Loading…
x
Reference in New Issue
Block a user