-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
37 lines (30 loc) · 936 Bytes
/
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
[workspace]
members = [
"y-octo",
"y-octo-node",
"y-octo-utils",
"y-octo-utils/yrs-is-unsafe",
]
resolver = "2"
[workspace.dependencies]
y-octo = { path = "./y-octo" }
y-octo-utils = { path = "./y-octo-utils" }
y-sync = { git = "https://github.com/toeverything/y-sync", rev = "5626851" }
yrs = { git = "https://github.com/toeverything/y-crdt", rev = "a700f09" }
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
[profile.fast-release]
codegen-units = 16
inherits = "release"
lto = false
[profile.profiling]
debug = true
inherits = "fast-release"
# [profile.release.package.y-octo-fuzz]
# debug = 1
[patch.crates-io]
lib0 = { git = "https://github.com/toeverything/y-crdt", rev = "a700f09" }
y-sync = { git = "https://github.com/toeverything/y-sync", rev = "5626851" }
yrs = { git = "https://github.com/toeverything/y-crdt", rev = "a700f09" }