-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
149 lines (146 loc) · 4.51 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
[workspace]
members = [
"crates/aliveness",
"crates/audio",
"crates/build_script_helpers",
"crates/code_generation",
"crates/communication",
"crates/constants",
"crates/context_attribute",
"crates/control",
"crates/cyclers",
"crates/filtering",
"crates/framework",
"crates/hulk",
"crates/kinematics",
"crates/nao",
"crates/nao_camera",
"crates/projection",
"crates/motionfile",
"crates/repository",
"crates/serialize_hierarchy",
"crates/serialize_hierarchy_derive",
"crates/source_analyzer",
"crates/spl_network",
"crates/spl_network_messages",
"crates/structs",
"crates/types",
"crates/vision",
"tools/behavior_simulator",
"tools/camera_matrix_extractor",
"tools/depp",
"tools/fanta",
"tools/pepsi",
"tools/twix",
]
# HuLA and Aliveness are built independently by yocto
exclude = ["tools/aliveness", "tools/hula"]
[workspace.dependencies]
alsa = "0.7.0"
aliveness = { path = "crates/aliveness" }
approx = "0.5.1"
audio = { path = "crates/audio" }
behavior_simulator = { path = "tools/behavior_simulator" }
awaitgroup = "0.6.0"
base64 = "0.13.0"
bat = { version = "0.21.0", default-features = false, features = [
"regex-onig",
"paging",
] }
bifrost = { git = "ssh://[email protected]/IntelligentRoboticsLab/bifrost.git" }
bincode = "1.3.3"
bindgen = "0.61.0"
build_script_helpers = { path = "crates/build_script_helpers" }
byteorder = "1.4.3"
chrono = "0.4.23"
clap = { version = "4.2.4", features = ["derive"] }
clap_complete = "4.2.1"
code_generation = { path = "crates/code_generation" }
color-eyre = "0.6.2"
communication = { path = "crates/communication" }
compiled-nn = "0.12.0"
constants = { path = "crates/constants" }
context_attribute = { path = "crates/context_attribute" }
control = { path = "crates/control" }
convert_case = "0.6.0"
ctrlc = { version = "3.2.3", features = ["termination"] }
cyclers = { path = "crates/cyclers" }
eframe = { version = "0.21.0", features = ["persistence"] }
egui_dock = { version = "0.4.2", git = "https://github.com/knoellle/egui_dock/", tag = "0.4.2", features = [
"serde",
] }
egui_extras = { version = "0.21.0", features = ["image"] }
enum_dispatch = "0.3.11"
fast_image_resize = "2.6.0"
fern = { version = "0.6.1", features = ["colored"] }
filtering = { path = "crates/filtering" }
framework = { path = "crates/framework" }
futures-util = "0.3.24"
fuzzy-matcher = "0.3.7"
glob = "0.3.0"
hardware = { path = "crates/hardware" }
home = "0.5.4"
i2cdev = "0.5.1"
image = "0.24.4"
indicatif = "0.17.2"
itertools = "0.10.5"
ittapi = "0.3.3"
kinematics = { path = "crates/kinematics" }
kira = "0.7.3"
libc = "0.2.137"
log = "0.4.17"
mlua = { version = "0.8.7", features = ["luajit", "serialize", "parking_lot"] }
nalgebra = { version = "0.31.1", features = ["serde", "serde-serialize"] }
nao = { path = "crates/nao" }
nao_camera = { path = "crates/nao_camera" }
nix = "0.25.0"
motionfile = { path = "crates/motionfile" }
ordered-float = "3.1.0"
parking_lot = "0.12.1"
petgraph = "0.6.2"
png = "0.17.6"
proc-macro-error = "1.0.4"
proc-macro2 = { version = "1.0.44", features = ["span-locations"] }
projection = { path = "crates/projection" }
quote = "1.0.21"
rand = "0.8.5"
rand_distr = "0.4.3"
regex = "1.6.0"
repository = { path = "crates/repository" }
reqwest = { version = "0.11.16", features = ["stream"] }
rustfft = "6.0.1"
serde = { version = "1.0.145", features = ["derive", "rc"] }
serde_bytes = "0.11.8"
serde_json = "1.0.91"
serde_test = "1.0.152"
serde-transcode = "1.1.1"
serialize_hierarchy = { path = "crates/serialize_hierarchy" }
serialize_hierarchy_derive = { path = "crates/serialize_hierarchy_derive" }
smallvec = "1.9.0"
source_analyzer = { path = "crates/source_analyzer" }
splines = {version = "4.2.0", features = ["serde"]}
spl_network = { path = "crates/spl_network" }
spl_network_messages = { path = "crates/spl_network_messages" }
structopt = "0.3.26"
structs = { path = "crates/structs" }
syn = { version = "1.0.101", features = ["full", "extra-traits"] }
tempfile = "3.3.0"
thiserror = "1.0.37"
tokio = { version = "1.21.2", features = ["full"] }
tokio-tungstenite = "0.17.2"
tokio-util = "0.7.4"
toml = "0.5.9"
topological-sort = "0.2.2"
types = { path = "crates/types" }
uuid = { version = "1.1.2", features = ["v4"] }
v4l = { version = "0.12.1", git = "https://github.com/HULKs/libv4l-rs", branch = "hulksChanges" }
walkdir = "2.3.2"
webots = { version = "0.7.0" }
vision = { path = "crates/vision" }
zbus = { version = "3.7.0", features = ["tokio"] }
[profile.incremental]
inherits = "release"
incremental = true
[profile.release-with-debug]
inherits = "release"
debug = true