-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
38 lines (31 loc) · 1.05 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
[workspace]
resolver = "2"
members = ["execute_llvm", "validator"]
# Building "execute_llvm" requires having LLVM14 installed
default-members = ["validator"]
[workspace.package]
rust-version = "1.75"
edition = "2021"
homepage = "https://github.com/CQCL/hugr"
repository = "https://github.com/CQCL/hugr"
license = "Apache-2.0"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(ci_run)'] }
missing_docs = "warn"
[workspace.lints.clippy]
# Unstable check, may cause false positives.
# https://github.com/rust-lang/rust-clippy/issues/5112
debug_assert_with_mut_call = "warn"
[workspace.dependencies]
pyo3 = "0.23.3"
serde_json = "1.0.111"
cargo_toml = "0.20.4"
thiserror = "2.0.6"
hugr = "0.14.1"
hugr-cli = "0.14.1"
inkwell = "0.5.0"
[patch.crates-io]
# Uncomment these to test the latest dependency version during development
# hugr = { git = "https://github.com/CQCL/hugr", rev = "ab94518" }
# hugr-cli = { git = "https://github.com/CQCL/hugr", rev = "ab94518" }
# hugr-llvm = { git = "https://github.com/CQCL/hugr", rev = "ab94518" }