File tree 3 files changed +16
-6
lines changed
3 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " valence"
3
- version = " 0.1.0"
3
+ version = " 0.1.0+mc1.19.2 "
4
4
edition = " 2021"
5
5
description = " A framework for building Minecraft servers in Rust."
6
6
repository = " https://github.com/rj00a/valence"
7
+ readme = " README.md"
7
8
license = " MIT"
9
+ keywords = [" minecraft" , " gamedev" , " server" ]
10
+ categories = [" game-engines" ]
8
11
build = " build/main.rs"
12
+ authors = [
" Ryan Johnson <[email protected] >" ]
9
13
10
14
[dependencies ]
11
15
aes = " 0.7"
@@ -32,12 +36,12 @@ rsa = "0.6"
32
36
rsa-der = " 0.3"
33
37
serde = { version = " 1" , features = [" derive" ] }
34
38
serde_json = " 1"
39
+ serde_nbt = " 0.1.0"
35
40
sha1 = " 0.10"
36
41
sha2 = " 0.10"
37
42
thiserror = " 1"
38
43
url = { version = " 2.2.2" , features = [" serde" ] }
39
44
uuid = " 1"
40
- serde_nbt = { path = " serde_nbt" }
41
45
vek = " 0.15"
42
46
43
47
[dependencies .tokio ]
@@ -64,8 +68,5 @@ serde_json = "1"
64
68
rayon = " 1"
65
69
num = " 0.4"
66
70
67
- [features ]
68
- protocol = []
69
-
70
71
[workspace ]
71
72
members = [" serde_nbt" , " packet_inspector" ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ edition = "2021"
5
5
description = " A simple Minecraft proxy for inspecting packets."
6
6
7
7
[dependencies ]
8
- valence = { path = " .." , features = [ " protocol " ] }
8
+ valence = { path = " .." }
9
9
clap = { version = " 3.2.8" , features = [" derive" ] }
10
10
tokio = { version = " 1" , features = [" full" ] }
11
11
anyhow = " 1"
Original file line number Diff line number Diff line change
1
+ //! <img src="https://raw.githubusercontent.com/rj00a/valence/main/assets/logo-full.svg" width="400">
2
+ //!
3
+ //! ---
4
+ //!
1
5
//! A Rust framework for building Minecraft servers.
2
6
//!
3
7
//! At a high level, a Valence [`Server`] is a collection of [`Clients`],
57
61
//! [`Entity`]: crate::entity::Entity
58
62
//! [`Client`]: crate::client::Client
59
63
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
+
60
69
#![ forbid( unsafe_code) ]
61
70
#![ warn(
62
71
trivial_casts,
You can’t perform that action at this time.
0 commit comments