summaryrefslogtreecommitdiff
path: root/src/key/mod.rs
blob: 3f54ed7308d03cb284bcb12aaa75ea6dfe09e176 (plain)
1
2
3
4
5
6
7
8
9
10
#[cfg(feature = "dynamic-keys")]
mod dynamic;
#[cfg(feature = "dynamic-keys")]
pub use self::dynamic::Key;

#[cfg(not(feature = "dynamic-keys"))]
#[path = "static.rs"]
mod static_;
#[cfg(not(feature = "dynamic-keys"))]
pub use self::static_::Key;