2023-01-10 13:24:04 +00:00
|
|
|
[package]
|
|
|
|
name = "vk_layer_rs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-14 13:27:23 +00:00
|
|
|
vulkan-rs = { git = "https://gavania.de/hodasemi/vulkan_lib.git" }
|
2023-01-17 06:57:56 +00:00
|
|
|
assetpath = { git = "https://gavania.de/hodasemi/vulkan_lib.git" }
|
2023-01-18 06:09:44 +00:00
|
|
|
utilities = { git = "https://gavania.de/hodasemi/utilities.git" }
|
2023-01-13 14:00:01 +00:00
|
|
|
rfactor_sm_reader = { git = "https://gavania.de/hodasemi/rfactor_sm_reader.git" }
|
2023-01-17 06:57:56 +00:00
|
|
|
ui = { git = "https://gavania.de/hodasemi/ui.git" }
|
2023-01-13 14:00:01 +00:00
|
|
|
|
2023-08-20 00:03:52 +00:00
|
|
|
anyhow = { version = "1.0.75", features = ["backtrace"] }
|
2023-07-16 00:03:49 +00:00
|
|
|
paste = "1.0.14"
|
2023-11-08 01:04:10 +00:00
|
|
|
serde = "1.0.192"
|
2023-10-31 01:03:58 +00:00
|
|
|
serde_json = "1.0.108"
|
2023-04-01 00:02:20 +00:00
|
|
|
ringbuf = "0.3.3"
|
2023-12-01 13:36:38 +00:00
|
|
|
lazy_static = "1.4.0"
|
2023-01-30 14:12:04 +00:00
|
|
|
|
|
|
|
[profile.release-lto]
|
|
|
|
inherits = "release"
|
|
|
|
lto = true
|