You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`rrule-rust` is a library for working with recurrence rules based on Rust's [rrule](https://crates.io/crates/rrule) crate
8
+
`rrule-rust` is a library for handling recurrence rules, powered by Rust's high-performance [rrule](https://crates.io/crates/rrule) crate.
9
9
10
10
1.[Quick Start](#quick-start)
11
11
2.[Performance](#performance)
12
12
13
13
## Quick Start
14
14
15
-
See [test folder](https://github.com/lsndr/rrule-rust/tree/master/tests) to find more use cases
16
-
17
15
```
18
16
npm i rrule-rust
19
17
```
20
18
19
+
If you need a browser-compatible version with WASM support, install it from the `alpha` channel:
20
+
21
+
```
22
+
npm i rrule-rust@alpha
23
+
```
24
+
25
+
> The WebAssembly (WASM) version is currently available on the `alpha` channel, as it relies on an alpha release of [napi.rs](https://napi.rs/). Once napi.rs v3 is officially released, WASM support will be included in the main (`latest`) release channel.
26
+
27
+
For more usage examples and advanced scenarios, see the [tests directory](https://github.com/lsndr/rrule-rust/tree/master/tests) in the repository.
0 commit comments