mirror of
https://github.com/italicsjenga/valence.git
synced 2025-01-26 05:26:34 +11:00
Prepare for public release
This commit is contained in:
parent
2cfc483ba3
commit
ebbea74017
3 changed files with 16 additions and 6 deletions
11
Cargo.toml
11
Cargo.toml
|
@ -1,11 +1,15 @@
|
||||||
[package]
|
[package]
|
||||||
name = "valence"
|
name = "valence"
|
||||||
version = "0.1.0"
|
version = "0.1.0+mc1.19.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A framework for building Minecraft servers in Rust."
|
description = "A framework for building Minecraft servers in Rust."
|
||||||
repository = "https://github.com/rj00a/valence"
|
repository = "https://github.com/rj00a/valence"
|
||||||
|
readme = "README.md"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
keywords = ["minecraft", "gamedev", "server"]
|
||||||
|
categories = ["game-engines"]
|
||||||
build = "build/main.rs"
|
build = "build/main.rs"
|
||||||
|
authors = ["Ryan Johnson <ryanj00a@gmail.com>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aes = "0.7"
|
aes = "0.7"
|
||||||
|
@ -32,12 +36,12 @@ rsa = "0.6"
|
||||||
rsa-der = "0.3"
|
rsa-der = "0.3"
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
|
serde_nbt = "0.1.0"
|
||||||
sha1 = "0.10"
|
sha1 = "0.10"
|
||||||
sha2 = "0.10"
|
sha2 = "0.10"
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
url = { version = "2.2.2", features = ["serde"] }
|
url = { version = "2.2.2", features = ["serde"] }
|
||||||
uuid = "1"
|
uuid = "1"
|
||||||
serde_nbt = { path = "serde_nbt" }
|
|
||||||
vek = "0.15"
|
vek = "0.15"
|
||||||
|
|
||||||
[dependencies.tokio]
|
[dependencies.tokio]
|
||||||
|
@ -64,8 +68,5 @@ serde_json = "1"
|
||||||
rayon = "1"
|
rayon = "1"
|
||||||
num = "0.4"
|
num = "0.4"
|
||||||
|
|
||||||
[features]
|
|
||||||
protocol = []
|
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = ["serde_nbt", "packet_inspector"]
|
members = ["serde_nbt", "packet_inspector"]
|
||||||
|
|
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||||
description = "A simple Minecraft proxy for inspecting packets."
|
description = "A simple Minecraft proxy for inspecting packets."
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
valence = { path = "..", features = ["protocol"] }
|
valence = { path = ".." }
|
||||||
clap = { version = "3.2.8", features = ["derive"] }
|
clap = { version = "3.2.8", features = ["derive"] }
|
||||||
tokio = { version = "1", features = ["full"] }
|
tokio = { version = "1", features = ["full"] }
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
//! <img src="https://raw.githubusercontent.com/rj00a/valence/main/assets/logo-full.svg" width="400">
|
||||||
|
//!
|
||||||
|
//! ---
|
||||||
|
//!
|
||||||
//! A Rust framework for building Minecraft servers.
|
//! A Rust framework for building Minecraft servers.
|
||||||
//!
|
//!
|
||||||
//! At a high level, a Valence [`Server`] is a collection of [`Clients`],
|
//! At a high level, a Valence [`Server`] is a collection of [`Clients`],
|
||||||
|
@ -57,6 +61,11 @@
|
||||||
//! [`Entity`]: crate::entity::Entity
|
//! [`Entity`]: crate::entity::Entity
|
||||||
//! [`Client`]: crate::client::Client
|
//! [`Client`]: crate::client::Client
|
||||||
|
|
||||||
|
#![doc(
|
||||||
|
html_logo_url = "https://raw.githubusercontent.com/rj00a/valence/main/assets/logo.svg",
|
||||||
|
html_favicon_url = "https://raw.githubusercontent.com/rj00a/valence/main/assets/logo.svg"
|
||||||
|
)]
|
||||||
|
|
||||||
#![forbid(unsafe_code)]
|
#![forbid(unsafe_code)]
|
||||||
#![warn(
|
#![warn(
|
||||||
trivial_casts,
|
trivial_casts,
|
||||||
|
|
Loading…
Add table
Reference in a new issue