parent
e99c5eaa24
commit
96eef39a7a
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -2255,7 +2255,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pixels"
|
name = "pixels"
|
||||||
version = "0.11.0"
|
version = "0.12.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytemuck",
|
"bytemuck",
|
||||||
"pixels-mocks",
|
"pixels-mocks",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pixels"
|
name = "pixels"
|
||||||
description = "A tiny library providing a GPU-powered pixel frame buffer."
|
description = "A tiny library providing a GPU-powered pixel frame buffer."
|
||||||
version = "0.11.0"
|
version = "0.12.0"
|
||||||
authors = ["Jay Oster <jay@kodewerx.org>"]
|
authors = ["Jay Oster <jay@kodewerx.org>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.64.0"
|
rust-version = "1.64.0"
|
||||||
|
|
1
MSRV.md
1
MSRV.md
|
@ -3,6 +3,7 @@
|
||||||
| `pixels` version | `rustc` version |
|
| `pixels` version | `rustc` version |
|
||||||
|------------------|-----------------|
|
|------------------|-----------------|
|
||||||
| (unreleased) | `1.65.0` |
|
| (unreleased) | `1.65.0` |
|
||||||
|
| `0.12.0` | `1.65.0` |
|
||||||
| `0.11.0` | `1.65.0` |
|
| `0.11.0` | `1.65.0` |
|
||||||
| `0.10.0` | `1.61.0` |
|
| `0.10.0` | `1.61.0` |
|
||||||
| `0.9.0` | `1.57.0` |
|
| `0.9.0` | `1.57.0` |
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
|
use crate::sprites::{CachedSprite, Frame};
|
||||||
use alloc::collections::BTreeMap;
|
use alloc::collections::BTreeMap;
|
||||||
use alloc::rc::Rc;
|
use alloc::rc::Rc;
|
||||||
|
|
||||||
use alloc::vec::Vec;
|
use alloc::vec::Vec;
|
||||||
|
|
||||||
use crate::sprites::{CachedSprite, Frame};
|
|
||||||
|
|
||||||
/// A list of assets loaded into memory.
|
/// A list of assets loaded into memory.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub(crate) struct Assets {
|
pub(crate) struct Assets {
|
||||||
|
|
Loading…
Reference in a new issue