-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 833 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (29 loc) · 833 Bytes
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
[workspace]
resolver = "2"
members = [
"quadratic-connection",
"quadratic-core",
"quadratic-cloud-controller",
"quadratic-cloud-worker",
"quadratic-core-cloud",
"quadratic-files",
"quadratic-multiplayer",
"quadratic-rust-shared",
"quadratic-rust-renderer/core",
"quadratic-rust-renderer/native",
]
exclude = ["poc/number_type", "dev-rust"]
[workspace.package]
authors = ["Quadratic"]
edition = "2024"
description = "Infinite data grid with Python, JavaScript, and SQL built-in"
repository = "https://github.com/quadratichq/quadratic"
license-file = "LICENSE"
version = "0.25.0"
# TODO(ddimaria): add shared dependencies here
[workspace.dependencies]
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"
# Enable thin LTO for better dead code elimination across crates
lto = "thin"