origin-storage 0.2.0

Storage port and TTL cache for Origin. Knows no storage engine.
Documentation
1
2
3
4
5
6
use origin_storage::MemoryStorage;

#[tokio::test]
async fn memory_storage_satisfies_the_storage_contract() {
    origin_storage::contract::run_all(&MemoryStorage::new(), "origin-memory-test").await;
}