Comment out unnecessary crates from Cargo.toml

This commit is contained in:
Garen Tyler 2021-03-01 19:24:46 -07:00
parent a5e14d1ba1
commit 737a1de7af
4 changed files with 46 additions and 1223 deletions

6
.gitignore vendored
View File

@ -1,4 +1,4 @@
.DS_Store
output.log
target/
world/
/output.log
/target
/world

1236
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,22 +1,20 @@
[package]
name = "Composition"
name = "composition"
version = "0.1.0"
authors = ["ElementG9 <garentyler@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.13"
colorful = "0.2.1"
lazy_static = "1.4.0"
ozelot = "0.9.0" # Ozelot 0.9.0 supports protocol version 578 (1.15.2)
toml = "0.5.6"
serde = { version = "1.0.114", features = ["serde_derive"]}
base64 = "0.12.3"
radix64 = "0.3.0"
mojang-api = "0.6.1"
log = "*"
fern = { version = "0.6", features = ["colored"] }
backtrace = "0.3.50"
chrono = "0.4.13"
serde = { version = "1.0.114", features = ["serde_derive"]}
serde_json = "1.0.59"
radix64 = "0.3.0"
# colorful = "0.2.1"
# lazy_static = "1.4.0"
# ozelot = "0.9.0" # Ozelot 0.9.0 supports protocol version 578 (1.15.2)
# toml = "0.5.6"
# base64 = "0.12.3"
# mojang-api = "0.6.1"
# backtrace = "0.3.50"

View File

@ -4,9 +4,6 @@
pub mod mctypes;
pub mod net;
pub mod server;
extern crate chrono;
extern crate fern;
extern crate log;
use log::{debug, error, info, warn};
use net::NetworkServer;