Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ authors = ["Buffrr <contact@buffrr.dev>"]

[workspace.dependencies]
fabric-resolver = { path = "fabric", version = "0.2.5" }
libveritas = { version = "0.3.1" }
libveritas_testutil = { version = "0.3.1" }
libveritas = { version = "0.3.3" }
libveritas_testutil = { version = "0.3.3" }

spaces_client = { version = "0.2.1" }
spaces_protocol = { version = "0.2.1" }
Expand Down
2 changes: 1 addition & 1 deletion fabric/go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.22

require (
github.com/btcsuite/btcd/btcec/v2 v2.3.6
github.com/spacesprotocol/libveritas-go v0.3.1
github.com/spacesprotocol/libveritas-go v0.3.3
)

require (
Expand Down
4 changes: 2 additions & 2 deletions fabric/go/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ github.com/decred/dcrd/crypto/blake256 v1.0.0 h1:/8DMNYp9SGi5f0w7uCm6d6M4OU2rGFK
github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc=
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 h1:YLtO71vCjJRCBcrPMtQ9nqBsqpA1m5sE92cU+pd5Mcc=
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1/go.mod h1:hyedUtir6IdtD/7lIxGeCxkaw7y45JueMRL4DIyJDKs=
github.com/spacesprotocol/libveritas-go v0.3.1 h1:MN7DkFvuySiv006iE5xBZc0SUAwi7QB3aO1iuWjKeQ8=
github.com/spacesprotocol/libveritas-go v0.3.1/go.mod h1:HXnX2FNL43ueJuedsQwX9GF5jRHYZLqXYfFLWz900H8=
github.com/spacesprotocol/libveritas-go v0.3.3 h1:kLiYBLp9vdsoIEYZHRZ+Eo9uKd02Vi02raYFhFZ97lw=
github.com/spacesprotocol/libveritas-go v0.3.3/go.mod h1:HXnX2FNL43ueJuedsQwX9GF5jRHYZLqXYfFLWz900H8=
2 changes: 1 addition & 1 deletion fabric/js/fabric-react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"dependencies": {
"@spacesprotocol/fabric-core": "*",
"@spacesprotocol/react-native-libveritas": "^0.3.1",
"@spacesprotocol/react-native-libveritas": "^0.3.3",
"uniffi-bindgen-react-native": "0.29.3-1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion fabric/js/fabric-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"dependencies": {
"@noble/curves": "^1.8.0",
"@spacesprotocol/fabric-core": "*",
"@spacesprotocol/libveritas": "^0.3.1"
"@spacesprotocol/libveritas": "^0.3.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
Expand Down
20 changes: 10 additions & 10 deletions fabric/js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions fabric/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ dependencies {
// compileOnly — consumers provide the right variant at runtime:
// Android: org.spacesprotocol:libveritas (AAR)
// JVM: org.spacesprotocol:libveritas-jvm (JAR)
compileOnly("org.spacesprotocol:libveritas-jvm:0.3.1")
compileOnly("org.spacesprotocol:libveritas-jvm:0.3.3")
// CLI needs it at runtime
runtimeOnly("org.spacesprotocol:libveritas-jvm:0.3.1")
runtimeOnly("org.spacesprotocol:libveritas-jvm:0.3.3")

implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3")
compileOnly("fr.acinq.secp256k1:secp256k1-kmp:0.17.3")
Expand Down
2 changes: 1 addition & 1 deletion fabric/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "fabric-resolver"
version = "0.1.0"
description = "Python client for the certrelay fabric network"
requires-python = ">=3.10"
dependencies = ["libveritas>=0.3.1"]
dependencies = ["libveritas>=0.3.3"]

[project.optional-dependencies]
signing = ["coincurve"]
Expand Down
2 changes: 1 addition & 1 deletion fabric/swift/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let package = Package(
.executable(name: "fabric", targets: ["FabricCLI"]),
],
dependencies: [
.package(url: "https://github.com/spacesprotocol/libveritas-swift.git", exact: "0.3.1"),
.package(url: "https://github.com/spacesprotocol/libveritas-swift.git", exact: "0.3.3"),
.package(url: "https://github.com/21-DOT-DEV/swift-secp256k1.git", exact: "0.17.0"),
],
targets: [
Expand Down
Loading