Commit 287f466 1 parent 1121102 commit 287f466 Copy full SHA for 287f466
File tree 9 files changed +44
-41
lines changed
9 files changed +44
-41
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ tokio = { version = "1.40", features = [
31
31
" sync" ,
32
32
] }
33
33
34
+ thiserror = " 1.0"
35
+ num-traits = " 0.2"
36
+ num-derive = " 0.4"
37
+
34
38
# Concurrency/Parallelism and Synchronization
35
39
rayon = " 1.10.0"
36
40
parking_lot = " 0.12.3"
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ serde.workspace = true
9
9
log.workspace = true
10
10
11
11
toml = " 0.8"
12
- serde-inline-default = " 0.2.1 "
12
+ serde-inline-default = " 0.2.2 "
Original file line number Diff line number Diff line change @@ -6,9 +6,10 @@ edition.workspace = true
6
6
[dependencies ]
7
7
serde.workspace = true
8
8
uuid.workspace = true
9
+ num-traits.workspace = true
10
+ num-derive.workspace = true
11
+
9
12
fastnbt = { git = " https://github.com/owengage/fastnbt.git" }
10
13
colored = " 2"
11
14
md5 = " 0.7.0"
12
15
13
- num-traits = " 0.2.19"
14
- num-derive = { version = " 0.4.2" }
Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ edition.workspace = true
8
8
pumpkin-world = { path = " ../pumpkin-world" }
9
9
10
10
log.workspace = true
11
-
12
- num-traits = " 0.2"
13
- num-derive = " 0.4"
14
- thiserror = " 1.0.63"
15
11
itertools.workspace = true
16
12
crossbeam.workspace = true
17
13
tokio.workspace = true
14
+ thiserror.workspace = true
15
+
16
+ num-traits.workspace = true
17
+ num-derive.workspace = true
Original file line number Diff line number Diff line change @@ -7,9 +7,10 @@ edition.workspace = true
7
7
proc-macro = true
8
8
9
9
[dependencies ]
10
+ serde.workspace = true
11
+ itertools.workspace = true
12
+
10
13
proc-macro2 = " 1.0"
11
14
quote = " 1.0"
12
15
syn = " 2.0"
13
- serde.workspace = true
14
- itertools.workspace = true
15
- serde_json = " 1.0.128"
16
+ serde_json = " 1.0.132"
Original file line number Diff line number Diff line change @@ -9,22 +9,21 @@ pumpkin-macros = { path = "../pumpkin-macros" }
9
9
pumpkin-world = { path = " ../pumpkin-world" }
10
10
pumpkin-core = { path = " ../pumpkin-core" }
11
11
12
- bytes = " 1.7"
13
-
14
12
uuid.workspace = true
15
-
16
13
serde.workspace = true
14
+ thiserror.workspace = true
15
+ itertools.workspace = true
16
+ log.workspace = true
17
17
18
- flate2 = " 1.0"
18
+ num-traits.workspace = true
19
+ num-derive.workspace = true
19
20
20
- thiserror = " 1.0"
21
- log.workspace = true
22
- num-traits = " 0.2"
23
- num-derive = " 0.4"
21
+ bytes = " 1.7"
22
+
23
+ flate2 = " 1.0"
24
24
25
25
# encryption
26
26
aes = " 0.8.4"
27
27
cfb8 = " 0.8.1"
28
28
29
- itertools.workspace = true
30
29
fastnbt = { git = " https://github.com/owengage/fastnbt.git" }
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ edition.workspace = true
7
7
pumpkin-protocol = { path = " ../pumpkin-protocol" }
8
8
pumpkin-core = { path = " ../pumpkin-core" }
9
9
10
+ serde.workspace = true
11
+
10
12
# nbt
11
13
fastnbt = { git = " https://github.com/owengage/fastnbt.git" }
12
-
13
- serde.workspace = true
Original file line number Diff line number Diff line change @@ -7,30 +7,29 @@ edition.workspace = true
7
7
pumpkin-core = { path = " ../pumpkin-core" }
8
8
pumpkin-macros = { path = " ../pumpkin-macros" }
9
9
10
- fastnbt = { git = " https://github.com/owengage/fastnbt.git" }
11
10
tokio.workspace = true
12
11
rayon.workspace = true
13
12
derive_more.workspace = true
14
13
itertools.workspace = true
15
- thiserror = " 1.0"
14
+ thiserror.workspace = true
15
+ serde.workspace = true
16
+ log.workspace = true
17
+ parking_lot.workspace = true
18
+
19
+ num-traits.workspace = true
20
+ num-derive.workspace = true
16
21
futures = " 0.3"
17
22
18
23
# Compression
19
24
flate2 = " 1.0"
20
- lz4 = " 1.11.1 "
25
+ lz4 = " 1.28.0 "
21
26
22
- serde.workspace = true
23
27
serde_json = " 1.0"
24
28
enum_dispatch = " 0.3.13"
25
29
derive-getters = " 0.5.0"
26
30
27
- log.workspace = true
28
-
29
- parking_lot.workspace = true
31
+ fastnbt = { git = " https://github.com/owengage/fastnbt.git" }
30
32
31
33
noise = " 0.9.0"
32
34
33
35
rand = " 0.8.5"
34
-
35
- num-traits = " 0.2"
36
- num-derive = " 0.4"
Original file line number Diff line number Diff line change @@ -15,6 +15,15 @@ pumpkin-protocol = { path = "../pumpkin-protocol" }
15
15
pumpkin-registry = { path = " ../pumpkin-registry" }
16
16
17
17
itertools.workspace = true
18
+ log.workspace = true
19
+ crossbeam.workspace = true
20
+ uuid.workspace = true
21
+ tokio.workspace = true
22
+ rayon.workspace = true
23
+ thiserror.workspace = true
24
+
25
+ num-traits.workspace = true
26
+ num-derive.workspace = true
18
27
19
28
# config
20
29
serde.workspace = true
@@ -24,8 +33,6 @@ bytes = "1.7"
24
33
25
34
rand = " 0.8.5"
26
35
27
- num-traits = " 0.2"
28
- num-derive = " 0.4"
29
36
num-bigint = " 0.4"
30
37
31
38
ctrlc = " 3.4"
@@ -49,17 +56,9 @@ digest = "=0.11.0-pre.9"
49
56
hmac = " 0.12.1"
50
57
sha2 = " 0.10.8"
51
58
52
- thiserror = " 1.0"
53
-
54
59
# icon loading
55
60
base64 = " 0.22.1"
56
61
png = " 0.17.14"
57
62
58
63
# logging
59
64
simple_logger = { version = " 5.0.0" , features = [" threads" ] }
60
- log.workspace = true
61
-
62
- crossbeam.workspace = true
63
- uuid.workspace = true
64
- tokio.workspace = true
65
- rayon.workspace = true
You can’t perform that action at this time.
0 commit comments