9d4ad9e248
Signed-off-by: Pavel Kirilin <s3riussan@gmail.com>
32 lines
584 B
TOML
32 lines
584 B
TOML
[package]
|
|
name = "gpu_this"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
name = "_core"
|
|
|
|
[dependencies]
|
|
ash = "0.38.0"
|
|
bytes = "1.12.0"
|
|
log = "0.4.33"
|
|
pyo3 = { version = "0.29.0", features = ["abi3-py311", "experimental-inspect"] }
|
|
pyo3-introspection = "0.29.0"
|
|
pyo3-log = "0.13.4"
|
|
rspirv = "0.13.0"
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
lto = "off"
|
|
incremental = true
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = false
|
|
strip = true
|
|
lto = "fat"
|
|
panic = "abort"
|
|
codegen-units = 1
|