-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (54 loc) · 2.11 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (54 loc) · 2.11 KB
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
[workspace]
resolver = "3"
members = [
"pomme-client",
"pomme-launcher/src-tauri",
"pomme-gpu-allocator",
"pomme-block",
"pomme-protocol",
"tools/blockgen",
"tools/protogen"
]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
directories = "6"
sha1_smol = "1"
open = "5"
base64 = "0.23"
zip = { version = "8.6", default-features = false, features = ["deflate"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.13", features = ["json"] }
# Shared by pomme-client and pomme-protocol; the versions must agree so
# glam types unify across the crate boundary.
glam = "0.33"
# client
pyronyx = "=0.3.2"
tracing = "0.1"
tracing-subscriber = "0.3"
# azalea lags crates.io releases; track the 26.2 branch from git.
# azalea-block is replaced by the pomme-block shim (pomme owns block data);
# the second patch table substitutes it under the azalea git workspace's own
# path dependencies too.
[patch.crates-io]
azalea-buf = { git = "https://github.com/azalea-rs/azalea", branch = "26.2" }
azalea-protocol = { git = "https://github.com/azalea-rs/azalea", branch = "26.2" }
azalea-crypto = { git = "https://github.com/azalea-rs/azalea", branch = "26.2" }
azalea-auth = { git = "https://github.com/azalea-rs/azalea", branch = "26.2" }
azalea-entity = { git = "https://github.com/azalea-rs/azalea", branch = "26.2" }
azalea-world = { git = "https://github.com/azalea-rs/azalea", branch = "26.2" }
azalea-block = { path = "pomme-block" }
azalea-chat = { git = "https://github.com/azalea-rs/azalea", branch = "26.2" }
azalea-core = { git = "https://github.com/azalea-rs/azalea", branch = "26.2" }
azalea-registry = { git = "https://github.com/azalea-rs/azalea", branch = "26.2" }
azalea-inventory = { git = "https://github.com/azalea-rs/azalea", branch = "26.2" }
[patch."https://github.com/azalea-rs/azalea"]
azalea-block = { path = "pomme-block" }
[profile.dev]
opt-level = 1
# Backtraces and profilers keep file:line; full local-variable debuginfo is
# opt-in via CARGO_PROFILE_DEV_DEBUG=full.
debug = "line-tables-only"
[profile.dev.package."*"]
opt-level = 2