-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (29 loc) · 963 Bytes
/
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
[package]
name = "accesskit-python"
version = "0.6.0"
authors = ["The AccessKit contributors"]
license = "MIT OR Apache-2.0"
description = "Python bindings to the AccessKit library"
readme = "README.md"
publish = false
edition = "2021"
rust-version = "1.70"
[lib]
name = "accesskit"
crate-type = ["cdylib"]
doc = false
[features]
extension-module = ["pyo3/extension-module"]
[dependencies]
accesskit = { version = "0.16.0", features = ["pyo3"] }
pyo3 = { version = "0.20", features = ["abi3-py38", "multiple-pymethods"] }
[target.'cfg(target_os = "windows")'.dependencies]
accesskit_windows = { version = "0.22.0" }
[target.'cfg(target_os = "macos")'.dependencies]
accesskit_macos = { version = "0.17.0" }
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
accesskit_unix = { version = "0.12.0" }
[profile.release]
lto = true
opt-level = "z"
codegen-units = 1