Comment out unnecessary crates from Cargo.toml
This commit is contained in:
parent
a5e14d1ba1
commit
737a1de7af
6
.gitignore
vendored
6
.gitignore
vendored
@ -1,4 +1,4 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
output.log
|
/output.log
|
||||||
target/
|
/target
|
||||||
world/
|
/world
|
||||||
|
1236
Cargo.lock
generated
1236
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
24
Cargo.toml
24
Cargo.toml
@ -1,22 +1,20 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "Composition"
|
name = "composition"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["ElementG9 <garentyler@gmail.com>"]
|
authors = ["ElementG9 <garentyler@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
[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 = "*"
|
log = "*"
|
||||||
fern = { version = "0.6", features = ["colored"] }
|
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"
|
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"
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
pub mod mctypes;
|
pub mod mctypes;
|
||||||
pub mod net;
|
pub mod net;
|
||||||
pub mod server;
|
pub mod server;
|
||||||
extern crate chrono;
|
|
||||||
extern crate fern;
|
|
||||||
extern crate log;
|
|
||||||
|
|
||||||
use log::{debug, error, info, warn};
|
use log::{debug, error, info, warn};
|
||||||
use net::NetworkServer;
|
use net::NetworkServer;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user