Skip to content
Open
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
825 changes: 807 additions & 18 deletions Cargo.lock

Large diffs are not rendered by default.

20 changes: 19 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitkitcore"
version = "0.1.38"
version = "0.1.40"
edition = "2021"

[lib]
Expand Down Expand Up @@ -36,6 +36,24 @@ hex = "0.4.3"
bip39 = "2.0"
bdk = { version = "0.30.2", features = ["all-keys"] }
base64 = "0.22"
log = "0.4"

# Bluetooth (for Android JNI initialization)
# btleplug is also pulled in transitively by trezor-connect-rs
btleplug = "0.11"

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

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

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

[dev-dependencies]
tokio = { version = "1.40.0", features = ["full"] }
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import PackageDescription

let tag = "v0.1.38"
let checksum = "9ce93a2e33d94842bfbe625314c6785410e34d187f9fe5af521daee4610f5eda"
let tag = "v0.1.40"
let checksum = "b495e8cb4b1b74ba171a7490fbc4892395c8d5d8758b21caa130562f141e9c29"
let url = "https://github.com/synonymdev/bitkit-core/releases/download/\(tag)/BitkitCore.xcframework.zip"

let package = Package(
Expand Down
Loading