You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
520 B
TOML
30 lines
520 B
TOML
[package]
|
|
name = "quotesdb"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
default-run = "api"
|
|
|
|
[[bin]]
|
|
name = "api"
|
|
path = "src/bin/api/main.rs"
|
|
|
|
[[bin]]
|
|
name = "ui"
|
|
path = "src/bin/ui/main.rs"
|
|
|
|
[dependencies]
|
|
common = { path = "../common" }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
getrandom = { version = "0.4", features = ["wasm_js"] }
|
|
|
|
[dev-dependencies]
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
strip = true
|
|
codegen-units = 1
|