-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
72 lines (63 loc) · 1.59 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
[workspace]
resolver = "1"
members = [
"craft-bots/ompas-craft-bots",
"scheme/core",
"scheme/macros",
"utils",
"middleware",
"scheme/utils",
"scheme/structs",
"scheme/repl",
"scheme/apps",
"scheme/modules",
"scheme/language",
"resources/playground",
"acting/apps",
"acting/core",
"acting/language",
"acting/interface",
"ompas-gobot-sim",
"benchmark",
"generator",
"stat",
]
exclude = ["aries"]
[workspace.dependencies]
structopt = "0.3.26"
tokio = { version = "1.17.0", features = ["full", "time"]}
yaml-rust = "0.4.5"
chrono = "0.4.24"
im = "15.1.0"
anyhow = "1.0.75"
itertools = { default-features = false, version = "0.11.0" }
rand = "0.8.5"
tonic = "0.10.1"
async-stream = "0.3.3"
tokio-stream = { default-features = false, version = "0.1" }
async-trait = "0.1.51"
prost = { default-features = false, version = "0.12.1" }
map-macro = "0.2.6"
macro_rules_attribute = "0.2.0"
async-recursion = "1.0.4"
function_name = "0.3.0"
futures = "0.3.28"
lazy_static = "1.4.0"
tonic-build = "0.10.1"
serde = {version = "1.0.188", features = ["derive"]}
serde_yaml = "0.9.25"
serde_json = "1.0.107"
rustyline = "12.0.0"
[profile.dev]
opt-level = 0
[profile.release]
codegen-units = 8
debug = false # No debug symbols to keep executables small
lto = "thin"
opt-level = 3
panic = "abort"
# A profile meant for usage in CI, provide reasonable build/execution times. Also enables debug assertions and symbols.
[profile.ci]
inherits = "dev"
opt-level = 3
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html