Skip to content

Commit

Permalink
remove ordered_map, ordered_set, phf_builder
Browse files Browse the repository at this point in the history
  • Loading branch information
abonander committed Jul 27, 2019
1 parent 47c8b53 commit 8ae2bb8
Show file tree
Hide file tree
Showing 12 changed files with 1 addition and 1,085 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,2 +1,2 @@
[workspace]
members = ["phf", "phf_builder", "phf_codegen", "phf_codegen/test", "phf_generator", "phf_macros", "phf_shared"]
members = ["phf", "phf_codegen", "phf_codegen/test", "phf_generator", "phf_macros", "phf_shared"]
21 changes: 0 additions & 21 deletions phf/src/lib.rs
Expand Up @@ -66,13 +66,6 @@ extern crate std as core;
#[::proc_macro_hack::proc_macro_hack]
pub use phf_macros:: phf_map;

#[cfg(feature = "macros")]
/// Macro to create a `static` (compile-time) [`OrderedMap`].
///
/// Requires the `"macros"` feature. Same usage as [`phf_map`]`!`.
#[::proc_macro_hack::proc_macro_hack]
pub use phf_macros::phf_ordered_map;

#[cfg(feature = "macros")]
/// Macro to create a `static` (compile-time) [`Set`].
///
Expand All @@ -96,30 +89,16 @@ pub use phf_macros::phf_ordered_map;
#[::proc_macro_hack::proc_macro_hack]
pub use phf_macros::phf_set;

#[cfg(feature = "macros")]
/// Macro to create a `static` (compile-time) [`OrderedSet`].
///
/// Requires the `"macros"` feature. Same usage as [`phf_set`]`!`.
#[::proc_macro_hack::proc_macro_hack]
pub use phf_macros::phf_ordered_set;


use core::ops::Deref;

pub use phf_shared::PhfHash;
#[doc(inline)]
pub use self::map::Map;
#[doc(inline)]
pub use self::set::Set;
#[doc(inline)]
pub use self::ordered_map::OrderedMap;
#[doc(inline)]
pub use self::ordered_set::OrderedSet;

pub mod map;
pub mod set;
pub mod ordered_map;
pub mod ordered_set;

// WARNING: this is not considered part of phf's public API and is subject to
// change at any time.
Expand Down
229 changes: 0 additions & 229 deletions phf/src/ordered_map.rs

This file was deleted.

0 comments on commit 8ae2bb8

Please sign in to comment.