Skip to content

Commit c511166

Browse files
Release (#14)
* Final name * name * Cargo.toml * Add license file * Code * Update Cargo.toml Co-authored-by: Marijn Suijten <marijns95@gmail.com> --------- Co-authored-by: Marijn Suijten <marijns95@gmail.com>
1 parent b9bc464 commit c511166

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
[package]
2-
name = "vdb-reader"
2+
name = "vdb-rs"
33
version = "0.1.0"
44
edition = "2021"
5+
authors = ["Traverse-Research <support@traverseresearch.nl>"]
6+
description = "OpenVDB manipulation library."
7+
license = "MIT"
8+
readme = "README.md"
9+
homepage = "https://github.com/Traverse-Research/vdb-rs"
10+
repository = "https://github.com/Traverse-Research/vdb-rs"
11+
keywords = ["voxel", "vdb"]
12+
categories = ["rendering"]
13+
include = ["src", "LICENSE"]
14+
documentation = "https://docs.rs/vdb-rs"
515

6-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
16+
[badges]
17+
maintenance = { status = "actively-developed" }
18+
19+
[package.metadata.docs.rs]
20+
default-target = "x86_64-pc-windows-msvc"
721

822
[profile.dev.package.'*']
923
opt-level = 's'

examples/bevy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use bevy_aabb_instancing::{
44
VertexPullingRenderPlugin, COLOR_MODE_SCALAR_HUE,
55
};
66
use smooth_bevy_cameras::{controllers::fps::*, LookTransformPlugin};
7-
use vdb_reader::{read_vdb, Index, Node};
7+
use vdb_rs::{read_vdb, Index, Node};
88

99
use std::{error::Error, fs::File, io::BufReader};
1010

0 commit comments

Comments
 (0)