This repository has been archived on 2025-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
trade_bot/Cargo.toml

25 lines
981 B
TOML
Raw Normal View History

2024-07-03 19:04:49 -04:00
[package]
name = "trade-bot"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = "1.38.0"
veloren-common = { git = "https://gitlab.com/veloren/veloren", tag = "weekly", features = [
2024-07-11 05:29:34 -04:00
"no-assets",
] }
veloren-common-net = { git = "https://gitlab.com/veloren/veloren", tag = "weekly" }
veloren-client = { git = "https://gitlab.com/veloren/veloren", tag = "weekly" }
veloren-world = { git = "https://gitlab.com/veloren/veloren", tag = "weekly" }
veloren-client-i18n = { git = "https://gitlab.com/veloren/veloren", tag = "weekly" }
2024-07-03 19:04:49 -04:00
toml = "0.8.14"
serde = { version = "1.0.203", features = ["derive"] }
2024-07-07 04:52:25 -04:00
log = "0.4.22"
env_logger = "0.11.3"
2025-02-17 11:10:03 -05:00
vek = { version = "0.17.0" }
hashbrown = { version = "0.15.1", features = ["equivalent"] }
2024-07-03 19:04:49 -04:00
[patch.crates-io]
specs = { git = "https://github.com/amethyst/specs.git", rev = "4e2da1df29ee840baa9b936593c45592b7c9ae27" }
2025-02-17 11:10:03 -05:00
hashbrown = { git = "https://github.com/rust-lang/hashbrown.git", rev = "458e44532a65cf850bde3c22bd5d30a1ce2ed6af" }