awaken-contract 0.6.0

Compatibility facade for Awaken runtime and server contracts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Compatibility facade for Awaken contract crates.
//!
//! New runtime-facing code should depend on `awaken-runtime-contract`. New
//! server/store-facing code should depend on `awaken-server-contract`. This
//! crate preserves the historical `awaken-contract` import path by re-exporting
//! both surfaces.

#![allow(missing_docs)]

pub use awaken_runtime_contract::*;
pub use awaken_server_contract as server_contract;
pub use awaken_server_contract::contract;
pub use awaken_server_contract::*;