Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zakarumych committed Sep 25, 2023
1 parent 492ec9a commit 706689f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
8 changes: 5 additions & 3 deletions gpu-descriptor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gpu-descriptor"
version = "0.2.3"
version = "0.2.4"
authors = ["Zakarum <[email protected]>"]
edition = "2018"
description = "Implementation agnostic descriptor allocator for Vulkan like APIs"
Expand All @@ -18,6 +18,8 @@ default = ["std"]
[dependencies]
gpu-descriptor-types = { path = "../types", version = "0.1" }
tracing = { version = "0.1", optional = true, default-features = false }
bitflags = { version = "1.2", default-features = false }
serde = { version = "1.0", optional = true, default-features = false, features = ["derive"] }
bitflags = { version = "2.4", default-features = false }
serde = { version = "1.0", optional = true, default-features = false, features = [
"derive",
] }
hashbrown = { version = "0.14" }
1 change: 1 addition & 0 deletions gpu-descriptor/src/allocator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ use {

bitflags::bitflags! {
/// Flags to augment descriptor set allocation.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash)]
pub struct DescriptorSetLayoutCreateFlags: u32 {
/// Specified that descriptor set must be allocated from\
/// pool with `DescriptorPoolCreateFlags::UPDATE_AFTER_BIND`.
Expand Down
4 changes: 2 additions & 2 deletions types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gpu-descriptor-types"
version = "0.1.1"
version = "0.1.2"
authors = ["Zakarum <[email protected]>"]
edition = "2018"
description = "Core types of gpu-descriptor crate"
Expand All @@ -11,4 +11,4 @@ homepage = "https://github.com/zakarumych/gpu-descriptor"
repository = "https://github.com/zakarumych/gpu-descriptor"

[dependencies]
bitflags = { version = "1.2", default-features = false }
bitflags = { version = "2.4", default-features = false }
1 change: 1 addition & 0 deletions types/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ bitflags::bitflags! {
/// Flags to augment descriptor pool creation.
///
/// Match corresponding bits in Vulkan.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash)]
pub struct DescriptorPoolCreateFlags: u32 {
/// Allows freeing individual sets.
const FREE_DESCRIPTOR_SET = 0x1;
Expand Down

0 comments on commit 706689f

Please sign in to comment.