-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (30 loc) · 1.14 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# The main DB package stuff
[package]
name = "NoSQLDB"
version = "0.0.1"
edition = "2021"
repository = "https://github.com/NikolaOgnjenovic/NoSQLDB"
description = "NoSQL database project in the advanced algorithms and data structures course on the third semester of software engineering studies on the Faculty of Technical Sciences in Novi Sad."
license = "GPL-3.0"
authors = ["Luka Bursać", "Momir Stanišić", "Mihajlo Orlović", "Nikola Ognjenović", "Viktor Srbljin"]
[dependencies]
db_config = { path = "libraries/db_config" }
segment_elements = { path = "libraries/segment_elements" }
lru_cache = { path = "libraries/lru_cache" }
bloom_filter = { path = "libraries/bloom_filter" }
count_min_sketch = { path = "libraries/count_min_sketch" }
hyperloglog = { path = "libraries/hyperloglog" }
simhash = { path = "libraries/simhash" }
lsm = {path = "libraries/lsm" }
token_bucket = {path = "libraries/token_bucket"}
inquire = "0.6.2"
clearscreen = "2.0.1"
colored = "2.1.0"
enum-iterator = "1.5.0"
# All the libraries the package is built with
[workspace]
members = ["libraries/*"]
[workspace.package]
version = "0.0.0"
edition = "2021"
license = "GPL-3.0"