We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edd939f commit d15c43fCopy full SHA for d15c43f
packages/common/util/core/src/check.rs
@@ -1,7 +1,8 @@
1
use lazy_static::lazy_static;
2
use regex::{Regex, RegexBuilder};
3
4
-pub const MAX_IDENT_LEN: usize = 16;
+pub const MAX_IDENT_LEN: usize = 64;
5
+// TODO: Do we still need long idents?
6
pub const MAX_IDENT_LONG_LEN: usize = 64;
7
pub const MAX_DISPLAY_NAME_LEN: usize = 24;
8
pub const MAX_DISPLAY_NAME_LONG_LEN: usize = 128;
0 commit comments