-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 906 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 906 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
[package]
name = "numpy-build-config"
version = "0.28.0"
authors = [
"The rust-numpy Project Developers",
"PyO3 Project and Contributors <https://github.com/PyO3>",
]
description = "Build configuration for the numpy crate"
edition = "2021"
rust-version = "1.83"
repository = "https://github.com/PyO3/rust-numpy"
license = "BSD-2-Clause"
[dependencies]
[features]
default = []
target-npy115 = []
target-npy116 = ["target-npy115"]
target-npy117 = ["target-npy116"]
target-npy118 = ["target-npy117"]
target-npy119 = ["target-npy118"]
target-npy120 = ["target-npy119"]
target-npy121 = ["target-npy120"]
target-npy122 = ["target-npy121"]
target-npy123 = ["target-npy122"]
target-npy124 = ["target-npy123"]
target-npy125 = ["target-npy124"]
target-npy20 = ["target-npy125"]
target-npy21 = ["target-npy20"]
target-npy22 = ["target-npy21"]
target-npy23 = ["target-npy22"]
target-npy24 = ["target-npy23"]