aboutsummaryrefslogtreecommitdiffstats
path: root/log_db/Cargo.toml
diff options
context:
space:
mode:
authorJan Tuomi <jan@jantuomi.fi>2024-10-07 12:43:16 +0300
committerJan Tuomi <jan@jantuomi.fi>2024-10-07 12:43:16 +0300
commita4efc83f7f29c6ef8ac9b4c57201c9ecc31266b3 (patch)
treea18c856a5fc15fe509d3e3277e345176608dee21 /log_db/Cargo.toml
parent30295ba5e1bdbfa69ad98fc5908ee4b1aabbd2e5 (diff)
Add py_bindings lib, move to monorepo structure
Diffstat (limited to 'log_db/Cargo.toml')
-rw-r--r--log_db/Cargo.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/log_db/Cargo.toml b/log_db/Cargo.toml
new file mode 100644
index 0000000..ca77753
--- /dev/null
+++ b/log_db/Cargo.toml
@@ -0,0 +1,24 @@
+[package]
+name = "log_db"
+version = "0.1.0"
+edition = "2021"
+
+[lib]
+crate-type = ["lib"]
+
+[dependencies]
+fs2 = "0.4.3"
+log = "0.4.22"
+priority-queue = "2.1.1"
+
+[dev-dependencies]
+ctor = "0.2.8"
+env_logger = "0.11.5"
+serial_test = "3.1.1"
+criterion = { version = "0.5", features = ["html_reports"] }
+rand = "0.8.5"
+tempfile = "3.13.0"
+
+[[bench]]
+name = "benchmark"
+harness = false