diff options
author | Nadrieril | 2019-04-15 17:33:32 +0200 |
---|---|---|
committer | Nadrieril | 2019-04-15 17:33:32 +0200 |
commit | 52615794bfe69a3ad14bff0044ade776028c08cd (patch) | |
tree | 927b8816493cc534281269199d1f8983c5d5626f /abnf_to_pest | |
parent | 63aa21c581933a10b2b1ab96c632c72834cf2115 (diff) |
Use upstream abnf crate
Diffstat (limited to 'abnf_to_pest')
-rw-r--r-- | abnf_to_pest/Cargo.toml | 2 | ||||
-rw-r--r-- | abnf_to_pest/src/lib.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/abnf_to_pest/Cargo.toml b/abnf_to_pest/Cargo.toml index ff4dc01..fc9fe66 100644 --- a/abnf_to_pest/Cargo.toml +++ b/abnf_to_pest/Cargo.toml @@ -9,6 +9,6 @@ edition = "2018" doctest = false [dependencies] -abnf = { git = "https://github.com/Nadrieril/abnf" } +abnf = "0.1.2" itertools = "0.8.0" pretty = "0.5.2" diff --git a/abnf_to_pest/src/lib.rs b/abnf_to_pest/src/lib.rs index 1b8fc9c..46bd79d 100644 --- a/abnf_to_pest/src/lib.rs +++ b/abnf_to_pest/src/lib.rs @@ -110,8 +110,8 @@ pub fn escape_rulename(x: &str) -> String { } } -fn format_char(x: usize) -> String { - if x <= usize::from(u8::max_value()) { +fn format_char(x: u32) -> String { + if x <= u32::from(u8::max_value()) { let x: u8 = x as u8; if x.is_ascii_graphic() { let x: char = x as char; |