-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 798 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
[workspace]
members = ["eidash*", "ei-proto"]
exclude = ["eidash-web"]
resolver = "2"
[workspace.package]
edition = "2021"
homepage = "https://github.com/fyko/merriam-webster"
repository = "https://github.com/fyko/merriam-webster"
categories = ["api-bindings", "asynchronous", "web-programming::http-client"]
keywords = ["merriam", "webster", "dictionary"]
license = "MIT OR Apache-2.0"
authors = ["Carter Himmel <[email protected]>"]
[workspace.dependencies]
eidash-id = { path = "./eidash-id" }
ei-proto = { path = "./ei-proto" }
serde = { features = ["derive"], version = "1" }
sqlx = { version = "0.7", features = [
"runtime-tokio-rustls",
"postgres",
"uuid",
"time",
"json",
"bigdecimal",
] }
once_cell = "1"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1