Skip to content

Commit e5071d9

Browse files
committed
Fix unicode string enum
1 parent e77cc5f commit e5071d9

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-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

+7
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ where
131131
// what guarantees this being special case avoiding
132132
// all potential conflicts.
133133
String::from("__Empty"),
134+
// |s| to_upper_camel_case(&s),
134135
|s| s.to_upper_camel_case(),
135136
);
136137

@@ -194,5 +195,11 @@ mod tests {
194195
camel_case_with_escaped_non_uax31("1 2 3"),
195196
"_0x310x2020x203"
196197
);
198+
199+
assert_eq!(camel_case_with_escaped_non_uax31("씨오알엠"), "씨오알엠");
200+
201+
assert_eq!(camel_case_with_escaped_non_uax31("A_B"), "A0x5Fb");
202+
203+
assert_eq!(camel_case_with_escaped_non_uax31("AB"), "Ab");
197204
}
198205
}

0 commit comments

Comments
 (0)