-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (35 loc) · 1.34 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "cobblestone-visualizer"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = "1.4.0"
tokio = { version = "1.37.0", features = ["time", "rt", "rt-multi-thread", "macros"] }
figment = { version = "0.10.19", features = ["env", "toml"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
log = "0.4.21"
env_logger = "0.11.3"
rand = "0.8.5"
bincode = "1.3.3"
bytestring = "1.3.1"
futures-util = "0.3.30"
tokio-stream = "0.1.15"
zstd = "0.13.1"
strum = { version = "0.26.2", features = ["derive"] }
# Actix
actix = "0.13.3"
actix-files = "0.6.5"
actix-multipart = "0.6.1"
actix-web-actors = "4.3.0"
actix-web = "4.6.0"
# Internal
oxagworldgenerator = { version = "0.1.4", registry = "kellnr" }
robotics_lib = { version = "0.1.21", registry = "kellnr" }
common-messages = { git = "ssh://[email protected]/RustyPripyat/common-messages.git" }
robot-for-visualizer = { git = "ssh://[email protected]/RustyPripyat/robot-for-visualizer.git" }
# Robots
roomba_robot_test = { git = "ssh://[email protected]/RustyPripyat/roomba_robot_test.git" }
robotic_ai_prypiat = { git = "ssh://[email protected]/D35P4C1T0/Robotic-AI.git" }
advanced-robot = { git = "ssh://[email protected]/Lorysmutti/Advanced_robot.git", branch = "External_Pathfinder" }