-
Notifications
You must be signed in to change notification settings - Fork 218
/
Cargo.toml
62 lines (56 loc) · 1.63 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
59
60
61
62
[workspace]
members = [
"prqlc/bindings/elixir/native/prql",
"prqlc/bindings/java",
"prqlc/bindings/js",
"prqlc/bindings/prqlc-c",
"prqlc/bindings/prqlc-python",
"prqlc/prqlc-macros",
"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.13.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.92"
enum-as-inner = "0.6.1"
insta = {version = "1.41.1", features = ["colors", "glob", "yaml", "filters"]}
insta-cmd = "0.6.0"
itertools = "0.13.0"
log = "0.4.22"
pyo3 = {version = "0.21.1", features = ["abi3-py37", "anyhow"]}
pyo3-build-config = "0.22.5"
schemars = "1.0.0-alpha.15"
semver = {version = "1.0.23", features = ["serde"]}
serde = {version = "1.0.214", features = ["derive"]}
serde_json = "1.0.132"
serde_yaml = {version = "0.9.34"}
similar = "2.6.0"
similar-asserts = "1.6.0"