-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (52 loc) · 1.46 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
53
54
55
56
57
58
[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",
]
resolver = "2"
[workspace.package]
authors = ["PRQL Developers"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/PRQL/prql"
# This isn't tested since `cargo-msrv` doesn't support workspaces; instead we
# test `metadata.msrv` in `prqlc`
rust-version = "1.70.0"
version = "0.12.3"
[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.86"
enum-as-inner = "0.6.0"
insta = {version = "1.39.0", features = ["colors", "glob", "yaml"]}
insta-cmd = "0.6.0"
itertools = "0.12.0"
log = "0.4.21"
serde = {version = "1.0.203", features = ["derive"]}
serde_json = "1.0.117"
serde_yaml = {version = "0.9.34"}