Skip to content

Commit ebbea74

Browse files
committed
Prepare for public release
1 parent 2cfc483 commit ebbea74

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

Cargo.toml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
[package]
22
name = "valence"
3-
version = "0.1.0"
3+
version = "0.1.0+mc1.19.2"
44
edition = "2021"
55
description = "A framework for building Minecraft servers in Rust."
66
repository = "https://github.com/rj00a/valence"
7+
readme = "README.md"
78
license = "MIT"
9+
keywords = ["minecraft", "gamedev", "server"]
10+
categories = ["game-engines"]
811
build = "build/main.rs"
12+
authors = ["Ryan Johnson <[email protected]>"]
913

1014
[dependencies]
1115
aes = "0.7"
@@ -32,12 +36,12 @@ rsa = "0.6"
3236
rsa-der = "0.3"
3337
serde = { version = "1", features = ["derive"] }
3438
serde_json = "1"
39+
serde_nbt = "0.1.0"
3540
sha1 = "0.10"
3641
sha2 = "0.10"
3742
thiserror = "1"
3843
url = { version = "2.2.2", features = ["serde"] }
3944
uuid = "1"
40-
serde_nbt = { path = "serde_nbt" }
4145
vek = "0.15"
4246

4347
[dependencies.tokio]
@@ -64,8 +68,5 @@ serde_json = "1"
6468
rayon = "1"
6569
num = "0.4"
6670

67-
[features]
68-
protocol = []
69-
7071
[workspace]
7172
members = ["serde_nbt", "packet_inspector"]

packet_inspector/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
description = "A simple Minecraft proxy for inspecting packets."
66

77
[dependencies]
8-
valence = { path = "..", features = ["protocol"] }
8+
valence = { path = ".." }
99
clap = { version = "3.2.8", features = ["derive"] }
1010
tokio = { version = "1", features = ["full"] }
1111
anyhow = "1"

src/lib.rs

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
//! <img src="https://raw.githubusercontent.com/rj00a/valence/main/assets/logo-full.svg" width="400">
2+
//!
3+
//! ---
4+
//!
15
//! A Rust framework for building Minecraft servers.
26
//!
37
//! At a high level, a Valence [`Server`] is a collection of [`Clients`],
@@ -57,6 +61,11 @@
5761
//! [`Entity`]: crate::entity::Entity
5862
//! [`Client`]: crate::client::Client
5963
64+
#![doc(
65+
html_logo_url = "https://raw.githubusercontent.com/rj00a/valence/main/assets/logo.svg",
66+
html_favicon_url = "https://raw.githubusercontent.com/rj00a/valence/main/assets/logo.svg"
67+
)]
68+
6069
#![forbid(unsafe_code)]
6170
#![warn(
6271
trivial_casts,

0 commit comments

Comments
 (0)