-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
28 lines (23 loc) · 885 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
[package]
name = "revault_net"
version = "0.3.0"
authors = ["Antoine Poinsot <darosior@protonmail.com>"]
edition = "2018"
rust-version = "1.48"
repository = "https://github.com/revault/revault_net"
license-file = "LICENSE"
keywords = ["bitcoin", "vault", "Noise", "transport"]
description = "Transport and messages implementation of the version 0 Revault protocol"
exclude = [".github/", "fuzz"]
[features]
# Get access to internal APIs from the fuzzing framework
fuzz = []
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
revault_tx = { version = "0.5.0", features = ["use-serde"] }
bitcoin = { version = "0.27", features = ["use-serde"] }
snow = { version = "0.7", default-features = false, features = ["libsodium-resolver"] }
# Used for Noise crypto and generating pubkeys
sodiumoxide = { version = "0.2", features = ["serde"] }
log = "0.4"