Skip to content

Commit

Permalink
Add deprecated reexports
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Nov 1, 2014
1 parent 8f5c0f0 commit 5752604
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions phf/src/lib.rs
Expand Up @@ -21,6 +21,15 @@ pub use ordered_map::OrderedMap;
#[doc(inline)]
pub use ordered_set::OrderedSet;

#[deprecated = "renamed to Map"]
pub use Map as PhfMap;
#[deprecated = "renamed to Set"]
pub use Set as PhfSet;
#[deprecated = "renamed to OrderedMap"]
pub use OrderedMap as PhfOrderedMap;
#[deprecated = "renamed to OrderedSet"]
pub use OrderedSet as PhfOrderedSet;

#[path="../../shared/mod.rs"]
mod shared;
pub mod map;
Expand Down

0 comments on commit 5752604

Please sign in to comment.