aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJan Tuomi <jan@jantuomi.fi>2024-10-07 16:15:28 +0300
committerJan Tuomi <jan@jantuomi.fi>2024-10-07 18:41:37 +0300
commitb7a2e5a6aae1e3843d8fdde74d3c5cadc0a9de0e (patch)
treef19246bfb695dc310a651f78573b01881ea2abec /README.md
parent02224c78f33aa183c57d72a0da06d58545b1a350 (diff)
Rename unit test modules
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9ec2def..01211a8 100644
--- a/README.md
+++ b/README.md
@@ -37,6 +37,8 @@ Add LogDB as a dependency in your `Cargo.toml`.
log_db = { git = "https://github.com/jantuomi/log_db.git" }
```
+Then use it in your code like so:
+
```rust
use log_db::*;
@@ -86,6 +88,7 @@ To build the Python bindings, run:
cd py_bindings
python -m venv venv
. venv/bin/activate
+pip install maturin
maturin develop # for the development version, or
maturin build --release # for the release version
```