-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
33 lines (30 loc) · 869 Bytes
/
Cargo.toml
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
33
[package]
name = "bwt-jni"
version = "0.2.4"
description = "JNI bindings for Bitcoin Wallet Tracker"
authors = ["Nadav Ivgi <nadav@shesek.info>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/bwt-dev/libbwt-jni"
repository = "https://github.com/bwt-dev/libbwt-jni"
keywords = [ "bitcoin", "bwt", "bitcoin wallet tracker" ]
edition = "2018"
include = [ "src", "LICENSE" ]
[features]
default = [ "electrum", "http" ]
android = [ "bwt/android" ]
electrum = [ "bwt/electrum" ]
http = [ "bwt/http" ]
track-spends = [ "bwt/track-spends" ]
webhooks = [ "bwt/webhooks" ]
extra = [ "bwt/extra" ]
pretty_env_logger = [ "bwt/pretty_env_logger" ]
dirs = [ "bwt/dirs" ]
signal-hook = [ "bwt/signal-hook" ]
[lib]
crate-type = [ "cdylib" ]
[dependencies]
bwt = { path = "./bwt", default-features = false }
jni = "0.18.0"
log = "0.4.11"
serde_json = "1.0.59"