Skip to content

Commit 2ed2655

Browse files
committed
fix: make type record fields public
1 parent 32596d3 commit 2ed2655

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "trace_types"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,9 @@ pub struct VariableRecord {
157157

158158
#[derive(Debug, Clone, Serialize, Deserialize)]
159159
pub struct TypeRecord {
160-
kind: TypeKind,
161-
lang_type: String,
162-
specific_info: TypeSpecificInfo,
160+
pub kind: TypeKind,
161+
pub lang_type: String,
162+
pub specific_info: TypeSpecificInfo,
163163
}
164164

165165
#[derive(Debug, Clone, Serialize, Deserialize)]

0 commit comments

Comments
 (0)