waterark

Crates.iowaterark
lib.rswaterark
version0.1.0
created_at2024-11-04 11:11:57.090432+00
updated_at2024-11-04 11:11:57.090432+00
descriptionWatermark for implementing optimistic SSI (Serializable Snapshot Isolation) transactions
homepagehttps://github.com/al8n/layer0
repositoryhttps://github.com/al8n/layer0/tree/main/waterark
max_upload_size
id1434884
size51,189
Al Liu (al8n)

documentation

README

Waterark

Watermark for implementing optimistic SSI (Serializable Snapshot Isolation) transactions

github LoC Build codecov

docs.rs crates.io crates.io license

Installation

  • Default

    [dependencies]
    waterark = "0.2"
    
  • Using in async runtimes with std

    • tokio

      [dependencies]
      waterark = { version = "0.2", default-features = false, features = ["tokio", "std"] }
      
    • smol

      [dependencies]
      waterark = { version = "0.2", default-features = false, features = ["smol", "std"] }
      
    • async-std

      #[dependencies]
      waterark = { version = "0.2", default-features = false, features = ["async-std", "std"] }
      
    • wasm

      #[dependencies]
      waterark = { version = "0.2", default-features = false, features = ["wasm", "std"] }
      
  • Using in async runtimes without std

    [dependencies]
    waterark = { version = "0.2", default-features = false, features = ["alloc", "future"] }
    

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Commit count: 96

cargo fmt