From 9e157f453ae674a9f86601142fde91b85485883a Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Tue, 16 Aug 2022 17:42:37 +0200 Subject: Add `no_std + alloc` --- src/util/normalize_identifier.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/util/normalize_identifier.rs') diff --git a/src/util/normalize_identifier.rs b/src/util/normalize_identifier.rs index ddc51f8..2f73bfa 100644 --- a/src/util/normalize_identifier.rs +++ b/src/util/normalize_identifier.rs @@ -1,5 +1,7 @@ //! Normalize identifiers. +use alloc::string::String; + /// Normalize an identifier, as found in [references][label_end] and /// [definitions][definition], so it can be compared when matching. /// -- cgit