This commit is contained in:
Hassan Abedi 2026-03-09 11:09:12 +01:00
parent 06b6f09fc3
commit 8f9806c515

View File

@ -29,7 +29,7 @@ See [ROADMAP.md](ROADMAP.md) for the list of implemented and planned features.
--- ---
### Quick Start ### Quickstart
```rust ```rust
use chase_rs::{chase, Atom, Instance, Term}; use chase_rs::{chase, Atom, Instance, Term};
@ -74,17 +74,20 @@ let rule = RuleBuilder::new()
.build(); .build();
``` ```
### Building and Testing ### Usful Commands
```bash ```bash
## Run all tests # Run all tests
cargo test make test
## Run with optimizations # Run linter checks
cargo build --release make lint
## Check for lint warnings # Run with optimizations
cargo clippy make build
# Run CLI
make run
``` ```
### License ### License