Skip to content

Commit 447cf49

Browse files
committed
Fix unicode string enum
1 parent e77cc5f commit 447cf49

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

sea-orm-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ proc-macro = true
2121
bae = { version = "0.2", package = "sea-bae", default-features = false, optional = true }
2222
syn = { version = "2", default-features = false, features = ["parsing", "proc-macro", "derive", "printing"] }
2323
quote = { version = "1", default-features = false }
24-
heck = { version = "0.4", default-features = false }
24+
heck = { version = "0.5", default-features = false }
2525
proc-macro2 = { version = "1", default-features = false }
2626
unicode-ident = { version = "1" }
2727

sea-orm-macros/src/derives/util.rs

+6
Original file line numberDiff line numberDiff line change
@@ -194,5 +194,11 @@ mod tests {
194194
camel_case_with_escaped_non_uax31("1 2 3"),
195195
"_0x310x2020x203"
196196
);
197+
198+
assert_eq!(camel_case_with_escaped_non_uax31("씨오알엠"), "씨오알엠");
199+
200+
assert_eq!(camel_case_with_escaped_non_uax31("A_B"), "A0x5Fb");
201+
202+
assert_eq!(camel_case_with_escaped_non_uax31("AB"), "Ab");
197203
}
198204
}

0 commit comments

Comments
 (0)