provable-contracts-macros 0.4.0

Compatibility facade: renamed to `aprender-contracts-macros`, whose proc macros this crate re-exports.
Documentation
1
2
3
4
5
6
7
8
9
//! Emit the rename notice on every build. See the sibling facade's build.rs.
fn main() {
    println!("cargo:rerun-if-changed=build.rs");
    println!(
        "cargo:warning=`provable-contracts-macros` was renamed to \
         `aprender-contracts-macros`; this crate is a compatibility facade that \
         re-exports it. Depend on `aprender-contracts-macros` directly when convenient."
    );
}