-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
47 lines (39 loc) · 977 Bytes
/
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
[workspace]
members = ["wg-toolkit", "wg-toolkit-cli", "serde-pickle"]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.5.0"
authors = ["Théo Rozier <[email protected]>"]
homepage = "https://github.com/mindstorm38/portablemc"
repository = "https://github.com/mindstorm38/portablemc"
license = "MIT"
readme = "./README.md"
[workspace.dependencies]
# Special local dependencies...
wg-toolkit = { path = "wg-toolkit", version = "=0.5.0" }
serde-pickle = { path = "serde-pickle", version = "=1.2.0-beta.0" }
# serde-pickle = "1.1"
# Common crates mandatory for almost everything:
thiserror = "1.0"
byteorder = "1.5"
tracing = "0.1"
serde = "1.0"
bitflags = "2.6"
# Data structures and math:
smallvec = "1.13"
indexmap = "2.6"
base64 = "0.22.1"
glam = "0.29"
# Threading:
crossbeam-channel = "0.5"
# Crypto:
crypto-common = "0.1"
blowfish = "0.9"
sha2 = "0.10"
sha1 = "0.10"
rand = "0.8"
rsa = "0.8"
crc32fast = "1.4.1"
# Compression:
flate2 = "1.0.34"