-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
72 lines (60 loc) · 2.15 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
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
[workspace]
members = [ "crates/*" ]
default-members = ["crates/bazed"]
[workspace.package]
authors = [
"ElKowar <[email protected]>",
"Charlotte Meyer <[email protected]>",
"Pedro Burgos <[email protected]>",
"cpli <[email protected]>",
]
categories = ["text-processing"]
keywords = ["editor"]
homepage = "https://github.com/bazed-editor/bazed"
repository = "https://github.com/bazed-editor/bazed"
license = "Apache-2.0 OR MIT"
[workspace.dependencies]
tracing = "0.1.37"
color-eyre = { version = "0.6.2" }
thiserror = "1.0.37"
tracing-error = "0.2.0"
blocking = "1.3.0"
serde_json = "1.0.89"
serde = { version = "1.0.151", features = ["derive"] }
uuid = { version = "1.2.2", features = ["v4", "serde"] }
derive_more = { version = "0.99.17", features = ["into", "display"] }
maplit = "1.0.2"
tap = "1.0.1"
unicode-general-category = "0.6.0"
nonempty = "0.8.1"
dashmap = "5.4.0"
parking_lot = "0.12.1"
async-trait = "0.1.64"
semver = {version = "1.0.16", features = ["serde"]}
interprocess = { version = "1.2.1", default-features = false, features = ["tokio_support"] }
derivative = "2.2.0"
futures = { version = "0.3.25", default-features = false, features = ["std"] }
tokio = { version = "1.26.0", features = ["rt-multi-thread", "net", "macros", "time", "sync"] }
bazed-rpc = { path = "crates/bazed-rpc", version = "0.0.0" }
bazed-core = { path = "crates/bazed-core", version = "0.0.0" }
bazed-tauri = { path = "crates/bazed-tauri", version = "0.0.0" }
bazed-event-system = { path = "crates/bazed-event-system", version = "0.0.0" }
bazed-input-mapper = { path = "crates/bazed-input-mapper", version = "0.0.0" }
bazed-stew-macros = { path = "crates/bazed-stew-macros", version = "0.0.0" }
bazed-stew-interface = { path = "crates/bazed-stew-interface", version = "0.0.0" }
bazed-stew = { path = "crates/bazed-stew", version = "0.0.0" }
example-plugin-interface = { path = "crates/example-plugin-interface", version = "0.0.0" }
[workspace.dependencies.tracing-subscriber]
version = "0.3.16"
default-features = false
features = [
"ansi",
"fmt",
"smallvec",
"std",
"env-filter",
"registry",
]
[profile.release]
codegen-units = 1
lto = true