blob: 871ace19ee4303900439697a601a2f4c73de2789 (
plain)
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
|
[package]
name = "mgasi"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dependencies.craftio-rs]
version = "*"
features = ["default"]
[dependencies.tokio]
version = "*"
features = ["full"]
[dependencies.anyhow]
version = "*"
[dependencies.async-trait]
version = "*"
[dependencies.mcproto-rs]
version = "*"
features = ["default", "v1_19_3"]
[patch.crates-io.craftio-rs]
# git = "https://github.com/Twister915/craftio-rs.git"
path = "../craftio-rs"
[patch.crates-io.mcproto-rs]
# git = "https://github.com/Web-44/mcproto-rs.git"
path = "../mcproto-rs"
|