-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathmod.rs
More file actions
99 lines (90 loc) · 2.88 KB
/
Copy pathmod.rs
File metadata and controls
99 lines (90 loc) · 2.88 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Copyright 2021-2023 Protocol Labs
// Copyright 2019-2022 ChainSafe Systems
// SPDX-License-Identifier: Apache-2.0, MIT
use std::fmt::Display;
use serde::{Deserialize, Serialize};
/// Specifies the network version
#[derive(Debug, Eq, PartialEq, Clone, Copy, Ord, PartialOrd, Serialize, Deserialize)]
#[repr(transparent)]
#[serde(transparent)]
pub struct NetworkVersion(u32);
impl NetworkVersion {
/// genesis (specs-actors v0.9.3)
pub const V0: Self = Self(0);
/// breeze (specs-actors v0.9.7)
pub const V1: Self = Self(1);
/// smoke (specs-actors v0.9.8)
pub const V2: Self = Self(2);
/// ignition (specs-actors v0.9.11)
pub const V3: Self = Self(3);
/// actors v2 (specs-actors v2.0.x)
pub const V4: Self = Self(4);
/// tape (increases max prove commit size by 10x)
pub const V5: Self = Self(5);
/// kumquat (specs-actors v2.2.0)
pub const V6: Self = Self(6);
/// calico (specs-actors v2.3.2)
pub const V7: Self = Self(7);
/// persian (post-2.3.2 behaviour transition)
pub const V8: Self = Self(8);
/// orange
pub const V9: Self = Self(9);
/// trust (specs-actors v3.0.x)
pub const V10: Self = Self(10);
/// norwegian (specs-actors v3.1.x)
pub const V11: Self = Self(11);
/// turbo (specs-actors v4.0.x)
pub const V12: Self = Self(12);
/// HyperDrive
pub const V13: Self = Self(13);
/// Chocolate v6
pub const V14: Self = Self(14);
/// OhSnap v7
pub const V15: Self = Self(15);
/// Skyr (builtin-actors v8)
pub const V16: Self = Self(16);
/// Shark (builtin-actors v9)
pub const V17: Self = Self(17);
/// Hygge (builtin-actors v10)
pub const V18: Self = Self(18);
/// Lightning (builtin-actors v11)
pub const V19: Self = Self(19);
/// Thunder (builtin-actors v11)
pub const V20: Self = Self(20);
/// Watermelon (builtin-actors v12)
pub const V21: Self = Self(21);
/// Dragon (builtin-actors v13)
pub const V22: Self = Self(22);
/// Waffle (builtin-actors v14)
pub const V23: Self = Self(23);
/// TukTuk (builtin-actors v15)
pub const V24: Self = Self(24);
/// Teep (builtin-actors v16)
pub const V25: Self = Self(25);
/// Tock (builtin-actors v16)
pub const V26: Self = Self(26);
/// GoldenWeek (builtin-actor v17)
pub const V27: Self = Self(27);
/// TBD (TBD builtin-actor v18)
pub const V28: Self = Self(28);
pub const MAX: Self = Self(u32::MAX);
/// Construct a new arbitrary network version.
pub const fn new(v: u32) -> Self {
Self(v)
}
}
impl Display for NetworkVersion {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
impl From<u32> for NetworkVersion {
fn from(v: u32) -> Self {
Self(v)
}
}
impl From<NetworkVersion> for u32 {
fn from(v: NetworkVersion) -> Self {
v.0
}
}