Allow putting Ident and Lifetime in a btree set
diff --git a/src/ident.rs b/src/ident.rs
index 5989aae..8f698be 100644
--- a/src/ident.rs
+++ b/src/ident.rs
@@ -1,7 +1,7 @@
 use std::borrow::Cow;
 use std::fmt::{self, Display};
 
-#[derive(Debug, Clone, Eq, Hash)]
+#[derive(Debug, Clone, Eq, Hash, Ord, PartialOrd)]
 pub struct Ident(String);
 
 impl Ident {