-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
91 lines (75 loc) · 1.94 KB
/
Copy pathCargo.toml
File metadata and controls
91 lines (75 loc) · 1.94 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[workspace]
resolver = "3"
[workspace.dependencies]
# RDF ecosystem
oxrdf = { version = "0.3.3", features = ["serde"] }
spargebra = "0.4.6"
spareval = { version = "0.2.6", features = ["sep-0006"] }
# Storage
fjall = "3.1.6"
postcard = { version = "1.1.3", features = ["alloc"] }
# Search
tantivy = "0.26.1"
# Serialization
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
# Identity
uuid = { version = "1.23.4", features = ["v4", "serde"] }
# Time
chrono = { version = "0.4.45", features = ["serde"] }
# Hashing
blake3 = "1.8.5"
# Error handling
thiserror = "2.0.18"
anyhow = "1.0.103"
globset = "0.4.18"
tracing = "0.1.44"
tokio = "1.52.3"
# RO-Crate implementation
rocraters = { package = "ro-crate-rs", git = "https://github.com/intbio-ncl/ro-crate-rs.git", branch = "main", features = [
"rdf",
] }
# Testing
proptest = "1.11.0"
tempfile = "3.27.0"
[package]
name = "craqle"
version = "0.1.1"
edition = "2024"
license = "MIT"
[features]
default = ["search"]
search = ["dep:tantivy"]
iroh = ["irokle/iroh"]
[dependencies]
blake3 = { workspace = true }
chrono = { workspace = true }
fjall = { workspace = true }
irokle = { git = "https://github.com/arunaengine/irokle.git", branch = "main", features = [
"fjall",
] }
oxrdf = { workspace = true }
postcard = { workspace = true }
rocraters = { workspace = true }
serde_json = { workspace = true }
spargebra = { workspace = true }
spareval = { workspace = true }
tantivy = { workspace = true, optional = true }
globset = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
[dev-dependencies]
anyhow = { workspace = true }
criterion = "0.8.2"
proptest = { workspace = true }
tempfile = { workspace = true }
iroh = "1.0.2"
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
[[bench]]
name = "partial_loading"
harness = false
[[bench]]
name = "large_rocrate_latency"
harness = false