-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 787 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 787 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 = "confidential-script-lib"
version = "0.3.2"
description = "Emulate Bitcoin script by converting script-path spends to key-path spends"
keywords = [ "bitcoin", "script", "kernel", "emulation", "tee" ]
authors = ["Joshua Doman <joshsdoman@gmail.com>"]
license = "CC0-1.0"
homepage = "https://github.com/joshdoman/confidential-script-lib"
repository = "https://github.com/joshdoman/confidential-script-lib"
edition = "2024"
readme = "README.md"
rust-version = "1.85.0"
[features]
default = ["std"]
std = ["bitcoin/std"]
bitcoinkernel = ["dep:bitcoinkernel"]
compiler = []
trace = []
[dependencies]
bitcoin = "0.32.7"
bitcoinkernel = { version = "0.0.23", optional = true }
hmac = "0.12.1"
num-bigint = "0.4.6"
sha2 = "0.10.9"
[dev-dependencies]
bitcoinkernel = "0.0.23"