-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (27 loc) · 1.12 KB
/
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
[package]
name = "vk-alloc"
version = "2.3.0"
authors = ["Nils Hasenbanck <[email protected]>"]
description = "A segregated list memory allocator for Vulkan."
license = "Zlib OR MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/hasenbanck/vk-alloc"
categories = ["rendering::graphics-api", "rendering"]
keywords = ["vk", "vulkan", "erupt", "allocator", "memory"]
edition = "2018"
[dependencies]
erupt = "0.22"
parking_lot = "0.11"
tracing1 = { version = "0.1", package = "tracing", default-features = false, optional = true }
profiling = { version = "1.0", optional = true }
[features]
tracing = ["tracing1"]
profile-with-puffin = ["profiling/profile-with-puffin"]
profile-with-optick = ["profiling/profile-with-optick"]
profile-with-superluminal = ["profiling/profile-with-superluminal"]
profile-with-tracing = ["profiling/profile-with-tracing"]
profile-with-tracy = ["profiling/profile-with-tracy"]
vk-buffer-device-address = []
[dev-dependencies]
romu = { version = "0.5", default-features = false }
tracing-subscriber = { version = "0.2", default-features = false, features = ["ansi", "env-filter", "fmt", "registry"] }