-
Notifications
You must be signed in to change notification settings - Fork 257
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (32 loc) · 924 Bytes
/
Cargo.toml
File metadata and controls
40 lines (32 loc) · 924 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
34
35
36
37
38
39
40
[package]
build = "build.rs"
description = "Python bindings for prqlc"
name = "prqlc-python"
publish = false
rust-version = "1.73.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[lib]
bench = false
crate-type = ["cdylib"]
doc = false
doctest = false
[target.'cfg(not(target_family="wasm"))'.dependencies]
pyo3 = {workspace = true}
[dependencies]
# Renamed to avoid conflicts in lib.rs
prqlc_lib = {package = "prqlc", path = "../../prqlc", default-features = false}
[dev-dependencies]
insta = {workspace = true}
[build-dependencies]
pyo3-build-config = {workspace = true}
[package.metadata.release]
tag-name = "{{version}}"
tag-prefix = ""
# We want the package to be named `prqlc`, but the crate is named `prqlc-python`
# to avoid a conflict with other cargo artifacts. This option renames the
# package to `prqlc`.
[package.metadata.maturin]
name = "prqlc"