forked from toeverything/OctoBase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (49 loc) · 1.4 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (49 loc) · 1.4 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
[workspace]
members = [
"apps/cloud",
"apps/keck",
"libs/cloud-database",
"libs/cloud-database/migration",
"libs/cloud-infra",
"libs/jwst",
# "libs/jwst-binding/jwst-ffi",
"libs/jwst-binding/jwst-jni",
# "libs/jwst-binding/jwst-py",
"libs/jwst-binding/jwst-swift",
"libs/jwst-binding/jwst-swift/jwst-swift-integrate",
# "libs/jwst-binding/jwst-wasm",
"libs/jwst-codec",
"libs/jwst-codec-util",
#"libs/jwst-codec/fuzz",
"libs/jwst-logger",
"libs/jwst-rpc",
"libs/jwst-storage",
"libs/jwst-storage/src/migration",
]
resolver = "2"
[workspace.dependencies]
jwst = { workspace = true, path = "libs/jwst" }
jwst-codec = { workspace = true, path = "libs/jwst-codec" }
jwst-logger = { workspace = true, path = "libs/jwst-logger" }
jwst-rpc = { workspace = true, path = "libs/jwst-rpc" }
jwst-storage = { workspace = true, path = "libs/jwst-storage" }
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
[profile.fast-release]
inherits = "release"
codegen-units = 16
lto = false
[profile.profiling]
inherits = "fast-release"
debug = true
# [profile.release.package.jwst-codec-fuzz]
# debug = 1
[profile.dev.package.image]
opt-level = 3
[profile.dev.package.sqlx-macros]
opt-level = 3
[patch.crates-io]
lib0 = { git = "https://github.com/toeverything/y-crdt", rev = "a700f09" }
yrs = { git = "https://github.com/toeverything/y-crdt", rev = "a700f09" }