-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (52 loc) · 1.55 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (52 loc) · 1.55 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
[package]
name = "melda"
version = "0.6.8"
authors = ["Amos Brocco <amos.brocco@supsi.ch>"]
edition = "2018"
license = "GPL-3.0"
description = "Melda is a Delta-State JSON CRDT"
homepage = "https://github.com/slashdotted/libmelda"
repository = "https://github.com/slashdotted/libmelda"
[dependencies]
yavomrs = "0.1.1"
hex = "0.4.3"
regex = "1.5.4"
serde_json = "1.0"
serde = "1.0.126"
anyhow = "1.0.41"
url = "2.2.2"
lazy_static = "1.4.0"
serial_test = "1.0.0"
lru = "0.10.0"
sha2 = "0.10"
impl-tools = "0.10.0"
gloo-utils = { version = "0.1", features = ["serde"] }
# Core dependencies
rayon = "1.5.1"
# Solid Adapter dependencies
reqwest = {
version = "0.11.4",
default-features = false,
features = ["blocking", "cookies", "rustls-tls"],
optional = true,
}
rio_api = { version = "0.8.2", optional = true }
rio_turtle = { version = "0.8.2", optional = true }
oxiri = { version = "0.2.2", optional = true }
cacache = { version = "11.4.0", optional = true }
# SQLite Adapter dependencies
base64 = { version = "0.21.0", optional = true }
rusqlite = { version = "0.28.0", optional = true }
# Brotli Adapter dependencies
brotli = { version = "3.3.4", optional = true }
# Flate2 Adapter dependencies
flate2 = { version = "1.0", optional = true }
[features]
default = ["filesystemadapter", "flate2adapter"]
filesystemadapter = []
flate2adapter = ["dep:flate2"]
solidadapter = ["dep:reqwest", "dep:rio_api", "dep:rio_turtle", "dep:oxiri", "dep:cacache"]
sqlitedbadapter = ["dep:rusqlite", "dep:base64"]
brotliadapter = ["dep:brotli"]
[dev-dependencies]
mktemp = "0.5.0"