lib

Core libraries for Radroots
git clone https://radroots.dev/git/lib.git
Log | Files | Refs | README | LICENSE

Cargo.toml (758B)


      1 [package]
      2 name = "radroots_local_events"
      3 publish = ["crates-io"]
      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 = "Shared local event and work-store primitives for Radroots runtimes"
     10 repository.workspace = true
     11 homepage.workspace = true
     12 documentation = "https://docs.rs/radroots_local_events"
     13 readme = "README"
     14 
     15 [lib]
     16 crate-type = ["rlib"]
     17 
     18 [features]
     19 default = []
     20 native = ["radroots_sql_core/native"]
     21 
     22 [dependencies]
     23 radroots_sql_core = { workspace = true }
     24 serde = { workspace = true }
     25 serde_json = { workspace = true }
     26 thiserror = { workspace = true }
     27 
     28 [dev-dependencies]
     29 radroots_sql_core = { workspace = true, features = ["native"] }