waterark

Crates.iowaterark
lib.rswaterark
version
sourcesrc
created_at2024-11-04 11:11:57.090432
updated_at2024-11-04 11:11:57.090432
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
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
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: 55

cargo fmt