File tree 5 files changed +9
-8
lines changed 5 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Rust-Lightning, not Rusty's Lightning!
5
5
6
6
Documentation can be found at [ docs.rs] ( https://docs.rs/lightning/ )
7
7
8
- Currently somewhere near 40 % towards usable, published to see if there is any
8
+ Currently somewhere near 50 % towards usable, published to see if there is any
9
9
real interest from folks in using a lightning rust library.
10
10
11
11
The goal is to provide a full-featured but also incredibly flexible lightning
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ stdin_fuzz = []
19
19
[dependencies ]
20
20
afl = { version = " 0.4" , optional = true }
21
21
lightning = { path = " ../lightning" , features = [" fuzztarget" ] }
22
- bitcoin = { version = " 0.20 " , features = [" fuzztarget" ] }
22
+ bitcoin = { version = " 0.21 " , features = [" fuzztarget" ] }
23
23
bitcoin_hashes = { version = " 0.7" , features = [" fuzztarget" ] }
24
24
hex = " 0.3"
25
25
honggfuzz = { version = " 0.5" , optional = true }
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ rm *_target.rs
13
13
popd
14
14
15
15
cargo install --force honggfuzz
16
+ HFUZZ_BUILD_ARGS=" --features honggfuzz_fuzz" cargo hfuzz build
16
17
for TARGET in src/bin/* .rs; do
17
18
FILENAME=$( basename $TARGET )
18
19
FILE=" ${FILENAME% .* } "
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " lightning-net-tokio"
3
- version = " 0.0.1 "
3
+ version = " 0.0.2 "
4
4
authors = [" Matt Corallo" ]
5
5
license = " Apache-2.0"
6
6
description = """
@@ -9,9 +9,9 @@ For Rust-Lightning clients which wish to make direct connections to Lightning P2
9
9
"""
10
10
11
11
[dependencies ]
12
- bitcoin = " 0.20 "
12
+ bitcoin = " 0.21 "
13
13
bitcoin_hashes = " 0.7"
14
- lightning = { version = " 0.0.9 " , path = " ../lightning" }
14
+ lightning = { version = " 0.0.10 " , path = " ../lightning" }
15
15
secp256k1 = " 0.15"
16
16
tokio-codec = " 0.1"
17
17
futures = " 0.1"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " lightning"
3
- version = " 0.0.9 "
3
+ version = " 0.0.10 "
4
4
authors = [" Matt Corallo" ]
5
5
license = " Apache-2.0"
6
6
repository = " https://github.com/rust-bitcoin/rust-lightning/"
@@ -22,12 +22,12 @@ max_level_info = []
22
22
max_level_debug = []
23
23
24
24
[dependencies ]
25
- bitcoin = " 0.20 "
25
+ bitcoin = " 0.21 "
26
26
bitcoin_hashes = " 0.7"
27
27
secp256k1 = " 0.15"
28
28
29
29
[dev-dependencies .bitcoin ]
30
- version = " 0.20 "
30
+ version = " 0.21 "
31
31
features = [" bitcoinconsensus" ]
32
32
33
33
[dev-dependencies ]
You can’t perform that action at this time.
0 commit comments