bitcoind_json_rpc_regtest/
versions.rs1#[cfg(feature = "28_0")]
2pub const VERSION: &str = "28.0";
3
4#[cfg(all(feature = "27_1", not(feature = "28_0")))]
5pub const VERSION: &str = "27.1";
6
7#[cfg(all(feature = "27_0", not(feature = "27_1")))]
8pub const VERSION: &str = "27.0";
9
10#[cfg(all(feature = "26_2", not(feature = "27_0")))]
11pub const VERSION: &str = "26.2";
12
13#[cfg(all(feature = "26_1", not(feature = "26_2")))]
14pub const VERSION: &str = "26.1";
15
16#[cfg(all(feature = "26_0", not(feature = "26_1")))]
17pub const VERSION: &str = "26.0";
18
19#[cfg(all(feature = "25_2", not(feature = "26_0")))]
20pub const VERSION: &str = "25.2";
21
22#[cfg(all(feature = "25_1", not(feature = "25_2")))]
23pub const VERSION: &str = "25.1";
24
25#[cfg(all(feature = "25_0", not(feature = "25_1")))]
26pub const VERSION: &str = "25.0";
27
28#[cfg(all(feature = "24_2", not(feature = "25_0")))]
29pub const VERSION: &str = "24.2";
30
31#[cfg(all(feature = "24_1", not(feature = "24_2")))]
32pub const VERSION: &str = "24.1";
33
34#[cfg(all(feature = "24_0_1", not(feature = "24_1")))]
35pub const VERSION: &str = "24.0.1";
36
37#[cfg(all(feature = "23_2", not(feature = "24_0_1")))]
38pub const VERSION: &str = "23.2";
39
40#[cfg(all(feature = "23_1", not(feature = "23_2")))]
41pub const VERSION: &str = "23.1";
42
43#[cfg(all(feature = "23_0", not(feature = "23_1")))]
44pub const VERSION: &str = "23.0";
45
46#[cfg(all(feature = "22_1", not(feature = "23_0")))]
47pub const VERSION: &str = "22.1";
48
49#[cfg(all(feature = "22_0", not(feature = "22_1")))]
50pub const VERSION: &str = "22.0";
51
52#[cfg(all(feature = "0_21_2", not(feature = "22_0")))]
53pub const VERSION: &str = "0.21.2";
54
55#[cfg(all(feature = "0_20_2", not(feature = "0_21_2")))]
56pub const VERSION: &str = "0.20.2";
57
58#[cfg(all(feature = "0_19_1", not(feature = "0_20_2")))]
59pub const VERSION: &str = "0.19.1";
60
61#[cfg(all(feature = "0_18_1", not(feature = "0_19_1")))]
62pub const VERSION: &str = "0.18.1";
63
64#[cfg(all(feature = "0_17_1", not(feature = "0_18_1")))]
65pub const VERSION: &str = "0.17.1";
66
67#[cfg(all(not(feature = "28_0"), not(feature = "27_1"), not(feature = "27_0"), not(feature = "26_2"), not(feature = "26_1"), not(feature = "26_0"), not(feature = "25_2"), not(feature = "25_1"), not(feature = "25_0"), not(feature = "24_2"),not(feature = "24_1"), not(feature = "24_0_1"), not(feature = "23_2"), not(feature = "23_1"), not(feature = "23_0"), not(feature = "22_1"), not(feature = "22_0"), not(feature = "0_21_2"), not(feature = "0_20_2"), not(feature = "0_19_1"), not(feature = "0_18_1"), not(feature = "0_17_1")))]
69#[allow(dead_code)] pub const VERSION: &str = "28.0";