sdk

Radroots SDK and bindings
git clone https://radroots.dev/git/sdk.git
Log | Files | Refs | README

Cargo.toml (1007B)


      1 [package]
      2 name = "radroots_replica_sync_wasm"
      3 publish = false
      4 version = "0.1.0-alpha.2"
      5 edition.workspace = true
      6 authors = ["Tyson Lupul <tyson@radroots.org>"]
      7 rust-version.workspace = true
      8 license.workspace = true
      9 description = "WebAssembly bindings for radroots_replica_sync"
     10 repository.workspace = true
     11 homepage.workspace = true
     12 documentation = "https://docs.rs/radroots_replica_sync_wasm"
     13 readme = "README"
     14 
     15 [lib]
     16 crate-type = ["cdylib", "rlib"]
     17 
     18 [dependencies]
     19 base64 = { workspace = true }
     20 radroots_events = { workspace = true, default-features = false, features = [
     21   "serde",
     22 ] }
     23 radroots_sdk_sql_wasm_runtime = { workspace = true }
     24 radroots_replica_sync = { workspace = true, features = ["std"] }
     25 serde = { workspace = true, features = ["derive"] }
     26 serde_json = { workspace = true }
     27 serde-wasm-bindgen = { workspace = true }
     28 uuid = { workspace = true, features = ["js"] }
     29 wasm-bindgen = { workspace = true }
     30 
     31 [lints.rust]
     32 unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }