hc_deepkey_types/
lib.rs

1pub mod app_binding;
2pub mod authority_spec;
3pub mod authorized_spec_change;
4pub mod change_rule;
5pub mod key_anchor;
6pub mod key_meta;
7pub mod key_registration;
8pub mod keyset_root;
9
10pub use app_binding::*;
11pub use authority_spec::*;
12pub use authorized_spec_change::*;
13pub use change_rule::*;
14pub use key_anchor::*;
15pub use key_meta::*;
16pub use key_registration::*;
17pub use keyset_root::*;
18
19use std::collections::BTreeMap;
20
21pub type MetaData = BTreeMap<String, rmpv::Value>;