valence/Cargo.toml

67 lines
1.2 KiB
TOML
Raw Normal View History

2022-01-21 01:39:49 +11:00
[package]
name = "valence"
2022-04-15 07:55:45 +10:00
version = "0.1.0"
2022-01-21 01:39:49 +11:00
edition = "2021"
2022-04-15 07:55:45 +10:00
description = "A framework for building Minecraft servers in Rust."
2022-01-21 01:41:24 +11:00
repository = "https://github.com/rj00a/valence"
2022-01-21 01:39:49 +11:00
license = "MIT"
2022-04-18 10:04:39 +10:00
build = "build/main.rs"
2022-04-15 07:55:45 +10:00
2022-01-21 01:39:49 +11:00
[dependencies]
2022-04-15 07:55:45 +10:00
aes = "0.7"
anyhow = "1"
2022-06-07 16:20:34 +10:00
approx = "0.5.1"
arrayvec = "0.7"
2022-04-15 07:55:45 +10:00
ascii = "1"
async-trait = "0.1"
base64 = "0.13"
bitfield-struct = "0.1"
2022-04-15 07:55:45 +10:00
bitvec = "1"
byteorder = "1"
cfb8 = "0.7"
flate2 = "1"
flume = "0.10"
futures = "0.3"
hematite-nbt = "0.5"
log = "0.4"
num = "0.4"
paste = "1"
rand = "0.8"
rayon = "1"
rsa = "0.5"
rsa-der = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha1 = "0.10"
sha2 = "0.10"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
2022-07-02 08:29:31 +10:00
url = { version = "2.2.2", features = ["serde"] }
uuid = "1"
vek = "0.15"
2022-04-15 07:55:45 +10:00
[dependencies.reqwest]
version = "0.11"
default-features = false
# Avoid OpenSSL dependency on Linux.
features = ["rustls-tls", "json"]
[dev-dependencies]
2022-04-18 10:04:39 +10:00
env_logger = "0.9"
2022-06-20 01:40:37 +10:00
noise = "0.7"
2022-04-18 10:04:39 +10:00
[build-dependencies]
anyhow = "1"
heck = "0.4"
proc-macro2 = "1"
quote = "1"
2022-07-02 08:29:31 +10:00
serde = { version = "1", features = ["derive"] }
2022-04-18 10:04:39 +10:00
serde_json = "1"
[features]
# Exposes the raw protocol API
protocol = []
2022-07-02 08:29:31 +10:00
[workspace]
members = ["packet-inspector"]