sdk

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

Cargo.toml (728B)


      1 [package]
      2 name = "radroots_sdk_sql_wasm_runtime"
      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 = "SDK-owned SQL WebAssembly host runtime"
     10 repository.workspace = true
     11 homepage.workspace = true
     12 documentation = "https://docs.rs/radroots_sdk_sql_wasm_runtime"
     13 
     14 [lib]
     15 crate-type = ["rlib"]
     16 
     17 [dependencies]
     18 radroots_sql_core = { workspace = true, features = ["web"] }
     19 serde = { workspace = true }
     20 serde_json = { workspace = true }
     21 serde-wasm-bindgen = { workspace = true }
     22 wasm-bindgen = { workspace = true }
     23 
     24 [lints.rust]
     25 unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }