-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 693 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 693 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
[package]
name = "bitcoinkernel"
version = "0.2.0"
edition = "2021"
rust-version = "1.71.0"
authors = ["sedited <seb.kung@gmail.com>"]
description = "Safe Rust bindings to libbitcoinkernel"
license = "MIT"
repository = "https://github.com/sedited/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.2.0" }
[dev-dependencies]
hex = "0.4"
env_logger = "0.11"
log = "0.4"
tempdir = ">=0.3.6"
[workspace]
members = [
"examples",
"fuzz",
"libbitcoinkernel-sys"
]