-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 959 Bytes
/
Cargo.toml
File metadata and controls
35 lines (33 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "obsidium"
version = "0.1.0"
edition = "2024"
repository = "https://github.com/ObsidiumMC/Obsidium"
homepage = "https://github.com/ObsidiumMC/Obsidium"
description = "A high-performance Minecraft server written in Rust."
license = "MIT"
authors = ["Omar Afet"]
keywords = ["minecraft", "server", "game", "protocol", "network"]
categories = ["games", "network-programming"]
readme = "README.md"
rust-version = "1.87.0"
[dependencies]
tokio = { version = "1", features = ["full"] }
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"fmt",
"time",
"env-filter",
] }
tracing-core = "0.1.34"
time = { version = "0.3", features = ["formatting", "macros", "local-offset"] }
async-trait = "0.1"
uuid = { version = "1", features = ["v4"] }
regex = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
flate2 = "1.0"
base64 = "0.22"
[workspace.metadata.release]
publish = false