forked from Lea-fish/Leafish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
77 lines (68 loc) · 2.21 KB
/
Cargo.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "leafish"
version = "0.1.0"
authors = [ "Thinkofdeath <[email protected]>", "iceiix <[email protected]>", "terrarier2111" ]
edition = "2018"
resolver = "2"
description = "Multi-protocol multi-platform Minecraft-compatible client"
repository = "https://github.com/Lea-fish/Leafish"
license = "MIT/Apache-2.0"
[package.metadata.bundle]
name = "Leafish"
identifier = "com.github.Lea-fish.Leafish"
icon = ["resources/icon*.png"]
category = "Game"
osx_minimum_system_version = "10.14"
[profile.dev]
split-debuginfo = "unpacked"
# Steven runs horrendously slow with no optimizations, and often freezes.
# However, building with full -O3 optimizations takes too long for a debug build.
# Use an -O1 optimization level strikes a good compromise between build and program performance.
opt-level = 1
[dependencies]
winit = "0.25.0"
glow = "0.10.0"
byteorder = "1.4.3"
serde = { version = "1.0.127", features = ["derive"] }
serde_json = "1.0.66"
flate2 = { version = "1.0.20", features = ["rust_backend"], default-features = false }
zip = { version = "0.5.13", features = ["deflate"], default-features = false }
image = "0.23.14"
getrandom = { version = "0.2.3", features = ["js"] }
rand = "0.8.4"
rand_pcg = "0.3.1"
base64 = "0.13.0"
log = { version = "0.4.14", features = ["std"] }
cgmath = "0.17.0"
lazy_static = "1.4.0"
collision = "0.20.1"
rsa_public_encrypt_pkcs1 = "0.4.0"
structopt = "0.3.22"
copypasta = "0.7.1"
instant = "0.1.10"
dirs = "3.0.2"
# Concurrency features
dashmap = "4.0.2"
parking_lot = "0.11.1"
atomic_float = "0.1.0"
# arc-swap = "1.4.0" # TODO: Use this!
crossbeam-channel = "0.5.1" # check if flume would be better in terms of performance!
# flume = "0.10.8" # replaced by crossbeam channel
# tokio = { version = "0.2", features = ["full"] } # readd as soon as we want to impl this!
rayon = "1.5.1"
rfd = "0.5.0"
bevy_ecs = { git = "https://github.com/terrarier2111/bevy" }
reqwest = { version = "0.11.4", features = [ "blocking" ]}
glutin = "0.27.0"
[dependencies.leafish_resources]
path = "./resources"
version = "0"
[dependencies.leafish_blocks]
path = "./blocks"
version = "0"
[dependencies.leafish_shared]
path = "./shared"
version = "0"
[dependencies.leafish_protocol]
path = "./protocol"
version = "0"