-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 775 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 775 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
33
[workspace]
members = [
"crates/*",
"bindings/prql-elixir/native/prql",
"bindings/prql-java",
"bindings/prql-js",
"bindings/prql-lib",
"bindings/prql-python",
"web/book", # The book / docs
"crates/prql-compiler/examples/compile-files", # An example
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/PRQL/prql"
rust-version = "1.65.0"
version = "0.10.0"
authors = ["PRQL Developers"]
[profile.release.package.prql-js]
# Optimize for small code size.
opt-level = "s"
# Insta runs faster this way, ref https://insta.rs/docs/quickstart/
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3
[workspace.metadata.release]
allow-branch = ["*"]
consolidate-commits = true