-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- test cases added for schema.rs - added config file - code refactoring
- Loading branch information
julfikar
committed
Jun 13, 2023
1 parent
1ef6198
commit 9bc0ce3
Showing
13 changed files
with
460 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/target | ||
/Cargo.lock | ||
/dbs/** | ||
flinch.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "flinch" | ||
version = "0.1.63" | ||
version = "0.1.64" | ||
edition = "2021" | ||
authors = ["Mohammad Julfikar <[email protected]>", "Mohammad Julfikar <[email protected]>"] | ||
categories = ["parser-implementations","caching","database-implementations"] | ||
|
@@ -17,21 +17,22 @@ repository = "https://github.com/mjm918/flinch" | |
|
||
[dependencies] | ||
anyhow = "1.0.70" | ||
bincode = "2.0.0-rc.3" | ||
chrono = "0.4.24" | ||
crossbeam-queue = "0.3.8" | ||
dashmap = { version="5.4.0", features=["rayon", "serde"] } | ||
bincode = "2.0.0-rc.3" | ||
flql = "0.2.6" | ||
futures = "0.3.28" | ||
log = "0.4.17" | ||
lazy_static = "1.4.0" | ||
log = "0.4.17" | ||
rayon = "1.7.0" | ||
regex = "1.8.4" | ||
serde = { version="1.0.160", features=["derive"] } | ||
serde_json = "1.0.95" | ||
sled = "0.34.7" | ||
simple_logger = { version="4.1.0", features = ["colors", "threads", "timestamps", "stderr"] } | ||
size = "0.4.1" | ||
sha256 = "1.1.3" | ||
simplelog = { version = "^0.12.1", features = ["paris"] } | ||
size = "0.4.1" | ||
sled = "0.34.7" | ||
thiserror = "1.0.40" | ||
tokio = { version="1.27.0", features=["full"] } | ||
toml = "0.7.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
mod index_hash; | ||
mod index_fields; | ||
mod range; | ||
mod authenticate; | ||
mod clips; | ||
mod errors; | ||
mod watchman; | ||
mod pub_sub; | ||
mod events; | ||
mod index_fields; | ||
mod index_hash; | ||
mod notif_type; | ||
mod utils; | ||
mod persistent; | ||
mod pri_headers; | ||
mod pub_sub; | ||
mod range; | ||
mod ttl; | ||
mod events; | ||
mod utils; | ||
mod watchman; | ||
mod zalloc; | ||
mod authenticate; | ||
|
||
pub mod doc_trait; | ||
pub mod collection; | ||
pub mod database; | ||
pub mod headers; | ||
pub mod doc_trait; | ||
pub mod doc; | ||
pub mod headers; | ||
pub mod query; | ||
pub mod schemas; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.