ipfs_effector_cid/lib.rs
1pub use build_info::PKG_VERSION as VERSION;
2
3pub mod build_info {
4 include!(concat!(env!("OUT_DIR"), "/built.rs"));
5}
6
7pub const EFFECTOR_CID: &'static str = include_str!("../artifacts/cidv1");
8
9#[cfg(test)]
10mod tests {
11 // TODO: check that it's correct CIDv1
12 #[test]
13 fn test_effectors_cid_empty() {
14 assert!(!crate::EFFECTOR_CID.is_empty());
15 }
16}