···910[features]
11default = []
12-rhai = ["dep:rhai"]
1314[dependencies]
15anyhow = "1.0.88"
···42tracing = { version = "0.1.40", features = ["async-await", "log", "valuable"] }
43zstd = "0.13.2"
44reqwest = { version = "0.12.9", features = ["json", "zstd", "rustls-tls"] }
45-rhai = { version = "1.20.0", features = ["serde", "std", "sync"], optional = true}
···910[features]
11default = []
01213[dependencies]
14anyhow = "1.0.88"
···41tracing = { version = "0.1.40", features = ["async-await", "log", "valuable"] }
42zstd = "0.13.2"
43reqwest = { version = "0.12.9", features = ["json", "zstd", "rustls-tls"] }
44+rhai = { version = "1.20.0", features = ["serde", "std", "sync"]}
+9
docs/playbook-dry-run.md
···000000000
···1+# Playbook: Dry Run
2+3+To test matchers, you can run in a dry-run mode using an in-memory database.
4+5+```shell
6+export DATABASE_URL=sqlite://file::memory:?cache=shared
7+export RUST_LOG=supercell=debug,warning
8+```
9+