-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 717 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (31 loc) · 717 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
[package]
name = "ironkernel"
version = "1.0.0"
edition = "2021"
rust-version = "1.74"
description = "A Python parallel compute library backed by a Rust execution engine"
license = "MIT"
[lib]
name = "_ironkernel"
crate-type = ["cdylib", "rlib"]
[features]
extension-module = ["pyo3/extension-module"]
[dependencies]
pyo3 = "0.23"
numpy = "0.23"
rayon = "1.10"
crossbeam-channel = "0.5"
[dev-dependencies]
proptest = "1.5"
[lints.clippy]
cast_possible_truncation = "warn"
cast_sign_loss = "warn"
doc_markdown = "warn"
manual_let_else = "warn"
semicolon_if_nothing_returned = "warn"
uninlined_format_args = "warn"
needless_pass_by_value = "allow"
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"