File tree 4 files changed +8
-3
lines changed
4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 15
15
fail-fast : false
16
16
matrix :
17
17
os : [ ubuntu-20.04 ]
18
- feature : [ "4_1_5" ]
18
+ feature : [ "4_1_5", "4_5_4" ]
19
19
20
20
steps :
21
21
- run : df -h
Original file line number Diff line number Diff line change @@ -23,4 +23,5 @@ bitcoin_hashes = "0.10"
23
23
24
24
[features ]
25
25
"4_1_5" = []
26
+ "4_5_4" = []
26
27
Original file line number Diff line number Diff line change
1
+ adce760df83b0c6c70770ef87adb0e37ac5e00a8b51b376d5240f5d1e1e74c06
Original file line number Diff line number Diff line change 1
- pub const HAS_FEATURE : bool = cfg ! ( any( feature = "4_1_5" , ) ) ;
1
+ pub const HAS_FEATURE : bool = cfg ! ( any( feature = "4_1_5" , feature = "4_5_4" ) ) ;
2
2
3
- #[ cfg( not( any( feature = "4_1_5" , ) ) ) ]
3
+ #[ cfg( not( any( feature = "4_1_5" , feature = "4_5_4" ) ) ) ]
4
4
pub const VERSION : & str = "N/A" ;
5
5
6
6
#[ cfg( feature = "4_1_5" ) ]
7
7
pub const VERSION : & str = "4.1.5" ;
8
+
9
+ #[ cfg( feature = "4_5_4" ) ]
10
+ pub const VERSION : & str = "4.5.4" ;
You can’t perform that action at this time.
0 commit comments