Fix repo size and logo

This commit is contained in:
Connor Fitzgerald 2021-08-18 15:04:13 -04:00 committed by Dzmitry Malyshau
parent 9da5c1d3a0
commit 12c82b9b9e
2 changed files with 13 additions and 3 deletions

View File

@ -5,10 +5,20 @@ authors = ["wgpu developers"]
edition = "2018"
description = "Rusty WebGPU API wrapper"
homepage = "https://wgpu.rs/"
repository = "https://github.com/gfx-rs/wgpu"
repository = "https://github.com/gfx-rs/wgpu/tree/v0.10"
keywords = ["graphics"]
license = "MIT OR Apache-2.0"
exclude = ["etc/**/*", "examples/**/*.png", "tests/**/*", "Cargo.lock", "target/**/*"]
exclude = [
"etc/**/*",
"examples/**/*.png", # Image comparison test
"examples/**/*.dds", # Compressed textures
"examples/**/*.ktx2", # Compressed textures
"examples/**/*.mtl", # Material files
"examples/**/*.obj", # Model files
"tests/**/*",
"Cargo.lock",
"target/**/*"
]
autotests = false
[package.metadata.docs.rs]

View File

@ -1,4 +1,4 @@
<img align="right" width="25%" src="../logo.png">
<img align="right" width="25%" src="https://raw.githubusercontent.com/gfx-rs/wgpu/master/logo.png">
wgpu-rs is an idiomatic Rust wrapper over [wgpu-core](https://github.com/gfx-rs/wgpu). It's designed to be suitable for general purpose graphics and computation needs of Rust community.