-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (19 loc) · 550 Bytes
/
Cargo.toml
File metadata and controls
22 lines (19 loc) · 550 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[workspace]
members = [
"badgers",
"badgers-cli",
"badgers-utils",
"badgers-worker"
]
resolver = "2"
[workspace.package]
license = "MIT"
repository = "https://github.com/splittydev/spacebadgers"
homepage = "https://github.com/splittydev/spacebadgers"
authors = ["Marco Quinten <splittydev@gmail.com>"]
[workspace.dependencies]
spacebadgers = { path = "badgers" }
spacebadgers-utils = { version = "1", path = "badgers-utils" }
[profile.release.package.badgers-worker]
# Tell `rustc` to optimize for small code size.
opt-level = "s"