[package] name = "nescapture" version = "0.2.0" edition.workspace = true license.workspace = true repository.workspace = true description = "Vulkan implicit layer: direct frame capture, Vulkan Video encode, and IPC out to the session transport" [lib] name = "nescapture_layer" crate-type = ["cdylib"] [dependencies] # Vulkan bindings ash = { git = "https://github.com/ash-rs/ash", rev = "55dd56906bbb5760e9e9e6c56f45be67f67e0649" } # Shader fingerprinting sha2 = "0.10" bytemuck = "1" # Concurrent state maps dashmap = "6" once_cell = "1" pollster = "0.4.0" # Logging log = "0.4" env_logger = "0.11" anyhow = "1" # Per-game shader-hash config toml = "0.8" serde = { version = "1", features = ["derive"] } # Vulkan Video hardware encoding. pixelforge = { git = "https://github.com/hgaiser/pixelforge.git", rev = "2ee4d7ac6e470cc34270e48d6e9d6f3fc1d7c379", features = ["dmabuf"] } # libc for DMA-BUF OS primitives libc = "0.2" # Shared IPC protocol nesprotocol = { path = "../../crates/nesprotocol" }