-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 760 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "bitcoinkernel"
version = "0.0.22"
edition = "2021"
rust-version = "1.71.0"
authors = ["TheCharlatan <seb.kung@gmail.com>"]
description = "Safe Rust bindings to libbitcoinkernel"
license = "MIT"
repository = "https://github.com/TheCharlatan/rust-bitcoinkernel"
documentation = "https://docs.rs/bitcoinkernel"
keywords = ["bitcoin", "ffi", "libbitcoinkernel"]
categories = ["cryptography::cryptocurrencies"]
readme = "README.md"
[dependencies]
libbitcoinkernel-sys = { path = "libbitcoinkernel-sys", version = "0.0.21" }
[dev-dependencies]
hex = "0.4"
env_logger = "0.11"
log = "0.4"
bitcoin = "0.31"
tempdir = "0.3"
silentpayments = "0.1"
secp256k1 = "0.28"
[workspace]
members = [
"examples",
"fuzz",
"libbitcoinkernel-sys"
]