Skip to content

Commit 94f3215

Browse files
authored
Merge pull request #86 from synonymdev/feat/usb-thp-support
feat: support USB THP devices from trezor-connect-rs
2 parents c902b5b + 99bcca6 commit 94f3215

17 files changed

Lines changed: 20 additions & 9 deletions

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitkitcore"
3-
version = "0.1.56"
3+
version = "0.1.57"
44
edition = "2021"
55

66
[lib]
@@ -46,11 +46,11 @@ btleplug = "0.11"
4646

4747
# Trezor connect library - non-iOS platforms get USB + Bluetooth
4848
[target.'cfg(not(target_os = "ios"))'.dependencies]
49-
trezor-connect-rs = { version = "0.2.5", features = ["psbt"] }
49+
trezor-connect-rs = { version = "0.2.8", features = ["psbt"] }
5050

5151
# iOS: Bluetooth only (libusb has no iOS backend, so no USB support)
5252
[target.'cfg(target_os = "ios")'.dependencies]
53-
trezor-connect-rs = { version = "0.2.5", default-features = false, features = ["bluetooth", "psbt"] }
53+
trezor-connect-rs = { version = "0.2.8", default-features = false, features = ["bluetooth", "psbt"] }
5454

5555
# JNI for Android (must match btleplug's jni version)
5656
[target.'cfg(target_os = "android")'.dependencies]

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import PackageDescription
55

6-
let tag = "v0.1.56"
7-
let checksum = "6b3b2e2138f80bde3a3cbbf21f11bb194fef7299a8eebff5175c10632fc80eff"
6+
let tag = "v0.1.57"
7+
let checksum = "fe0b5fa50a9bad4330fc6fb74bcec335459188fdcf543a6b971af3356161bb85"
88
let url = "https://github.com/synonymdev/bitkit-core/releases/download/\(tag)/BitkitCore.xcframework.zip"
99

1010
let package = Package(

bindings/android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ android.useAndroidX=true
33
android.enableJetifier=true
44
kotlin.code.style=official
55
group=com.synonym
6-
version=0.1.56
6+
version=0.1.57

0 commit comments

Comments
 (0)