summaryrefslogtreecommitdiff
path: root/ext/webgpu/texture.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-11-02 15:03:37 +0100
committerGitHub <noreply@github.com>2021-11-02 10:03:37 -0400
commit8e31bbbe551e95a40a78fd96671916f917218b93 (patch)
treef11c7b387b1d9c10898d6a67f37afcafea750d40 /ext/webgpu/texture.rs
parent70336912b4307ac218426a3f5ce938bd8fb7dbb5 (diff)
chore: update to Rust edition 2021 (#12578)
Diffstat (limited to 'ext/webgpu/texture.rs')
-rw-r--r--ext/webgpu/texture.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/webgpu/texture.rs b/ext/webgpu/texture.rs
index 47e7a14d2..ac3ceda6a 100644
--- a/ext/webgpu/texture.rs
+++ b/ext/webgpu/texture.rs
@@ -6,8 +6,6 @@ use deno_core::ResourceId;
use deno_core::{OpState, Resource};
use serde::Deserialize;
use std::borrow::Cow;
-use std::convert::TryFrom;
-use std::convert::TryInto;
use super::error::WebGpuResult;
pub(crate) struct WebGpuTexture(pub(crate) wgpu_core::id::TextureId);