Skip to content
Draft
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
1,134 changes: 1,122 additions & 12 deletions Cargo.lock

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
[package]
name = "bitkitcore"
version = "0.1.31"
version = "0.1.32"
edition = "2021"

[features]
default = ["pubky"]
pubky = ["dep:pubky", "paykit-lib/pubky"]

[lib]
crate-type = ["cdylib", "staticlib", "rlib"]
name = "bitkitcore"
Expand Down Expand Up @@ -34,6 +38,10 @@ bitcoin-address-generator = "0.2.0"
uuid = { version = "1.16.0", features = ["v4"] }
hex = "0.4.3"
bip39 = "2.0"
paykit-lib = { git = "https://github.com/pubky/paykit-rs", features = ["pubky"] }
pubky = { version = "0.6.0-rc.6", optional = true }
base64 = "0.22.1"
urlencoding = "2.1.3"

[dev-dependencies]
tokio = { version = "1.40.0", features = ["full"] }
Expand All @@ -54,7 +62,6 @@ rustflags = [
"-C", "link-arg=-Wl,--allow-multiple-definition",
]


[[bin]]
name = "example"
path = "example/main.rs"
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.31"
let checksum = "919d015a27448207dc26e54a07c846355ae7d78bfc970914940d7d5cc101811f"
let tag = "v0.1.32"
let checksum = "75e4d4c33d1c10bef7a65772eb5f0cb2485998470e1e69986861b647ccd0fa05"
let url = "https://github.com/synonymdev/bitkit-core/releases/download/\(tag)/BitkitCore.xcframework.zip"

let package = Package(
Expand Down
Loading