-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 1.44 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
35
36
37
38
39
40
41
42
[workspace]
resolver = "2"
members = [
"cli",
"test_util",
"crates/*"
]
[workspace.package]
authors = ["the Berlin authors"]
edition = "2021"
license = "MIT"
repository = "https://github.com/mttrbit/berlin"
[workspace.dependencies]
berlin_core = { path = "./crates/bln-core", version = "0.0.0" }
errors = { path = "./crates/errors", version = "0.0.0" }
css = { path = "./crates/css", version = "0.0.0" }
libs = { path = "./crates/libs", version = "0.0.0" }
markdown = { path = "./crates/markdown", version = "0.0.0" }
org = { path = "./crates/org", version = "0.0.0" }
storage = { path = "./crates/storage", version = "0.0.0" }
templates = { path = "./crates/templates", version = "0.0.0" }
parser = { path = "./crates/parser", version = "0.0.0" }
linkedin = { path = "./crates/linkedin", version = "0.0.0" }
linkedin-http = { path = "./crates/linkedin-http", version = "0.0.0" }
linkedin-macros = { path = "./crates/linkedin-macros", version = "0.0.0" }
linkedin-model = { path = "./crates/linkedin-model", version = "0.0.0" }
berlin_runtime = { version = "0.1.0", path = "./runtime" }
berlin_webstorage = { version = "0.1.0", path = "./ext/webstorage" }
test_util = { path = "./test_util" }
# anyhow = "1.0"
notify = "5.1.0"
# rusqlite = { version = "=0.28.0", features = ["unlock_notify", "bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
pest = "2.6.0"
pest_derive = "2.6.0"
enum_dispatch = "0.3.11"
thiserror = "1.0.40"