-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
49 lines (39 loc) · 809 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[workspace]
resolver = "2"
members = [
"shared/simulator",
"shared/ai",
"shared/builtin_ai",
"shared/api",
"shared/proto",
"shared/envelope",
"shared/code_encryption",
"shared/version",
"shared/compiler",
"shared/multifile",
"services/backend",
"services/compiler",
"tools",
"bundler",
]
[patch.crates-io]
rand_seeder = { git = "https://github.com/rlane/seeder", rev = "c39e58447f7c236fb98579a5d46e5668b92a3245" }
[profile.dev.package.'*']
opt-level = 1
[profile.dev.package.oort_simulator]
opt-level = 1
[profile.dev]
opt-level = 0
[profile.release]
debug = true
lto = "thin"
incremental = true
[profile.service]
inherits = "release"
opt-level = "s"
lto = false
incremental = true
[profile.bench]
debug = true
lto = "thin"
incremental = true