aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/lib.rs
diff options
context:
space:
mode:
authorAdolfo OchagavĂ­a <[email protected]>2018-11-07 10:58:34 +0000
committerAdolfo OchagavĂ­a <[email protected]>2018-11-07 10:58:34 +0000
commit3b2ba59526f8e524aa3c1526dda2828a93653ed2 (patch)
tree3ef9368b78dfb558c8b015d0914412d49c479e60 /crates/ra_syntax/src/lib.rs
parente37ba706ccc435346c35042c2b6c4b483494268b (diff)
Use ArrayString instead of hand rolled data structure
Diffstat (limited to 'crates/ra_syntax/src/lib.rs')
-rw-r--r--crates/ra_syntax/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_syntax/src/lib.rs b/crates/ra_syntax/src/lib.rs
index 123002825..319fb947d 100644
--- a/crates/ra_syntax/src/lib.rs
+++ b/crates/ra_syntax/src/lib.rs
@@ -20,6 +20,7 @@
20#![allow(missing_docs)] 20#![allow(missing_docs)]
21//#![warn(unreachable_pub)] // rust-lang/rust#47816 21//#![warn(unreachable_pub)] // rust-lang/rust#47816
22 22
23extern crate arrayvec;
23extern crate drop_bomb; 24extern crate drop_bomb;
24extern crate itertools; 25extern crate itertools;
25extern crate parking_lot; 26extern crate parking_lot;