1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#![crate_name = "string_cache"]
#![crate_type = "rlib"]
#![cfg_attr(test, deny(warnings))]
#![cfg_attr(all(test, feature = "unstable"), feature(test, filling_drop))]
#![cfg_attr(feature = "unstable", feature(unsafe_no_drop_flag, plugin))]
#![cfg_attr(feature = "unstable", plugin(string_cache_plugin))]
#[cfg(all(test, feature = "unstable"))]
extern crate test;
#[macro_use]
extern crate lazy_static;
#[cfg(test)]
extern crate rand;
#[cfg(feature = "log-events")]
extern crate rustc_serialize;
extern crate serde;
extern crate string_cache_shared;
pub use atom::Atom;
pub use namespace::{Namespace, QualName};
#[macro_export]
macro_rules! qualname (($ns:tt, $local:tt) => (
::string_cache::namespace::QualName {
ns: ns!($ns),
local: atom!($local),
}
));
#[cfg(not(feature = "unstable"))]
include!(concat!(env!("OUT_DIR"), "/ns_atom_macros_without_plugin.rs"));
#[cfg(feature = "log-events")]
#[macro_use]
pub mod event;
pub mod atom;
pub mod namespace;
#[doc(hidden)]
mod string_cache {
pub use atom;
pub use namespace;
}