trade_bot/Cargo.toml

24 lines
865 B
TOML
Raw Permalink Normal View History

2024-07-03 23:04:49 +00:00
[package]
name = "trade-bot"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = "1.38.0"
2024-07-11 09:29:34 +00:00
veloren-common = { git = "https://gitlab.com/veloren/veloren", branch = "master", features = [
"no-assets",
] }
veloren-common-net = { git = "https://gitlab.com/veloren/veloren", branch = "master" }
veloren-client = { git = "https://gitlab.com/veloren/veloren", branch = "master" }
veloren-world = { git = "https://gitlab.com/veloren/veloren", branch = "master" }
veloren-client-i18n = { git = "https://gitlab.com/veloren/veloren", branch = "master" }
2024-07-03 23:04:49 +00:00
toml = "0.8.14"
serde = { version = "1.0.203", features = ["derive"] }
2024-07-07 08:52:25 +00:00
log = "0.4.22"
env_logger = "0.11.3"
2024-07-08 14:39:19 +00:00
vek = "0.17.0"
hashbrown = { version = "0.14.5", features = ["equivalent"] }
2024-07-03 23:04:49 +00:00
[patch.crates-io]
specs = { git = "https://github.com/amethyst/specs.git", rev = "4e2da1df29ee840baa9b936593c45592b7c9ae27" }