-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
26 lines (21 loc) · 897 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
[package]
name = "teloren"
version = "0.1.0"
authors = ["Joshua Barretto <[email protected]>"]
edition = "2021"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
vek = { version = "0.17", features = ["serde"] }
termion = "4.0"
clap = { version = "4.5", features = ["wrap_help"] }
specs = { version = "0.20", features = ["nightly"] }
tokio = "1"
veloren-client = { git = "https://gitlab.com/veloren/veloren.git", tag = "weekly" }
veloren-common = { git = "https://gitlab.com/veloren/veloren.git", tag = "weekly", features = ["no-assets"] }
veloren-common-net = { git = "https://gitlab.com/veloren/veloren.git", tag = "weekly" }
[profile.dev]
opt-level = 2
overflow-checks = false
[patch.crates-io]
specs = { git = "https://github.com/amethyst/specs.git", rev = "4e2da1df29ee840baa9b936593c45592b7c9ae27" }