aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
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
```