Skip to content

Commit 037653c

Browse files
authored
rs port: implement debug and clone for Tag enum (#594)
* rs port: implement debug and clone for Tag enum: * remove * add Copy trait to Tag * bump rust port to 0.5.5
1 parent bc073fc commit 037653c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

source/ports/rs_port/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "Apache-2.0"
77
name = "metacall"
88
readme = "README.md"
99
repository = "https://github.com/metacall/core/tree/develop/source/ports/rs_port"
10-
version = "0.5.4"
10+
version = "0.5.5"
1111

1212
[lib]
1313
crate-type = ["lib"]

source/ports/rs_port/src/load.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ use std::{
1111
ptr::null_mut,
1212
};
1313

14+
#[derive(Debug, Clone, Copy)]
1415
pub enum Tag {
1516
C,
1617
Cobol,

0 commit comments

Comments
 (0)