-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (46 loc) · 1.24 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
[workspace]
members = [
"prqlc/bindings/elixir/native/prql",
"prqlc/bindings/java",
"prqlc/bindings/js",
"prqlc/bindings/prqlc-c",
"prqlc/bindings/prqlc-python",
"prqlc/prql-compiler-macros",
"prqlc/prql-compiler",
"prqlc/prqlc-ast",
"prqlc/prqlc-parser",
"prqlc/prqlc",
"prqlc/prqlc/examples/compile-files", # An example
"lutra/lutra",
"lutra/bindings/python",
"web/book", # The book / docs
]
resolver = "2"
[workspace.package]
authors = ["PRQL Developers"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/PRQL/prql"
rust-version = "1.70.0"
version = "0.11.4"
[profile.release]
# Optimize for binary size in releases of all crates,
# since compiler is fast enough as it is (for now).
opt-level = "s"
[profile.release.package.prqlc-c]
# Remove some debug symbols (linker needs some of them)
strip = "debuginfo"
# 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
[workspace.dependencies]
anyhow = "1.0.79"
insta = {version = "1.34", features = ["colors", "glob", "yaml"]}
insta-cmd = "0.4.0"
itertools = "0.12.0"
log = "0.4.20"