-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (23 loc) · 949 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
27
28
[package]
name = "lemon"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "robota"
path = "src/robota.rs"
[[bin]]
name = "robotb"
path = "src/robotb.rs"
[dependencies]
client = { git = "ssh://[email protected]/EMU5-Robotics/transport", rev = "cab298a55192cf496576b127a459629c3666e4d4", features = ["coprocessor"] }
common = { git = "ssh://[email protected]/EMU5-Robotics/transport", rev = "cab298a55192cf496576b127a459629c3666e4d4" }
protocol = { git = "ssh://[email protected]/EMU5-Robotics/transport", rev = "cab298a55192cf496576b127a459629c3666e4d4" }
communication = { git = "ssh://[email protected]/EMU5-Robotics/communication", rev = "b03028989110fda947ad9dcfc09c514b7aeada97" }
robot_algorithms = { git = "ssh://[email protected]/nonl4331/robot-algorithms", rev = "9474d943d101220693153f65c4042c7226afab90" }
anyhow = "1.0"
log = "0.4"
rppal = { version = "0.17.1", features = ["hal"]}
rand = "0.8.5"
amt22 = "0.1.0"
[profile.dev]
strip = "debuginfo"