-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (42 loc) · 1.57 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
[workspace]
resolver = "2"
members = [
"float-pigment-consistent-bincode",
"float-pigment-mlp",
"float-pigment-css-macro",
"float-pigment-css",
"float-pigment-layout",
"float-pigment-forest-macro",
"float-pigment-forest",
"float-pigment",
]
[workspace.package]
version = "0.2.0"
authors = ["LastLeaf <bqfu@163.com>", "TtTRz <romc1224@gmail.com>"]
categories = ["gui", "wasm"]
edition = "2021"
homepage = "https://github.com/wechat-miniprogram/float-pigment"
keywords = ["CSS", "flexbox", "layout"]
license = "MIT"
repository = "https://github.com/wechat-miniprogram/float-pigment"
[workspace.dependencies]
float-pigment = { version = "0.2.0", path = "./float-pigment" }
float-pigment-consistent-bincode = { version = "0.2.0", path = "./float-pigment-consistent-bincode", default-features = false }
float-pigment-css = { version = "0.2.0", path = "./float-pigment-css", default-features = false }
float-pigment-css-macro = { version = "0.2.0", path = "./float-pigment-css-macro" }
float-pigment-forest = { version = "0.2.0", path = "./float-pigment-forest" }
float-pigment-forest-macro = { version = "0.2.0", path = "./float-pigment-forest-macro" }
float-pigment-layout = { version = "0.2.0", path = "./float-pigment-layout" }
float-pigment-mlp = { version = "0.2.0", path = "./float-pigment-mlp" }
[profile.release]
opt-level = 's'
lto = "fat"
codegen-units = 1
[workspace.lints.clippy]
collapsible_else_if = "allow"
while_let_on_iterator = "allow"
get_first = "allow"
let_and_return = "allow"
redundant_closure = "allow"
single_match = "allow"
clone_on_copy = "allow"