-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 1.07 KB
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
[workspace]
members = ["api_gen"]
[package]
name = "xess-sys"
version = "0.1.0"
authors = ["Traverse Research <support@traverseresearch.nl>"]
edition = "2021"
license = "MIT"
homepage = "https://traverseresearch.nl"
repository = "https://github.com/Traverse-Research/xess-rs"
description = "Raw bindings to XeSS"
include = ["src", "LICENSE"]
categories = ["external-ffi-bindings", "graphics", "rendering"]
keywords = ["Intel", "XeSS", "XeLL", "frame generation", "upscaling"]
rust-version = "1.74"
# Headers contain a sequence of characters which are incorrectly interpreted as a doctest, these obviously fail
[lib]
doctest = false
[dependencies]
ash = { version = "0.38", default-features = false, optional = true }
libloading = { version = "0.8", default-features = false }
[target.'cfg(windows)'.dependencies]
windows = { version = "0.62", default-features = false, optional = true }
[features]
default = ["vk", "dx12", "xess"]
dx11 = []
dx12 = []
vk = ["dep:ash"]
xell = ["dx12"]
xess = []
xefg_swapchain = ["dx12", "windows/Win32_Graphics_Dxgi_Common", "windows/Win32_Graphics_Direct3D12"]