-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (42 loc) · 1.15 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
[package]
name = "_pytucanos"
version = "0.1.0"
edition = "2021"
[lib]
name = "_pytucanos"
crate-type = ["cdylib"]
[dependencies]
log = "0.4.22"
tucanos = { git = "https://github.com/tucanos/tucanos.git", rev = "2834243" }
numpy = "0.23"
pyo3 = { version = "0.23", features = ["extension-module", "multiple-pymethods"] }
pyo3-log = "0.12"
[features]
default = ["parry"]
nlopt = ["tucanos/nlopt"]
libmeshb = ["tucanos/libmeshb"]
libol = ["tucanos/marechal-libol-sys"]
parry = ["tucanos/parry"]
scotch = ["tucanos/scotch"]
metis = ["tucanos/metis"]
[lints.rust]
unused_imports = "deny"
unused_variables = "deny"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
missing_panics_doc = "allow"
cast_possible_truncation = "allow"
missing_errors_doc = "allow"
cast_precision_loss = "allow"
multiple_crate_versions = "allow"
cargo_common_metadata = "allow"
doc_markdown = "allow"
suboptimal_flops = "allow"
should_panic_without_expect = "allow"
ptr_as_ptr = "allow"
ptr_as_ref = "allow"
ref_as_ptr = "allow"
needless_pass_by_value = "allow"