Skip to content

Commit df8de03

Browse files
committed
fix: profiles
1 parent c5194d5 commit df8de03

1 file changed

Lines changed: 26 additions & 3 deletions

File tree

‎Cargo.toml‎

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,32 @@ description = "Idiomatic and safe MDBX wrapper"
44
version = "0.0.1"
55
edition = "2024"
66
rust-version = "1.92"
7-
license = "Apache-2.0 OR MIT"
8-
homepage = "https://github.com/init4tech/signet-mdbx"
9-
repository = "https://github.com/init4tech/signet-mdbx"
7+
license = "MIT OR Apache-2.0"
8+
homepage = "https://github.com/init4tech/mdbx"
9+
repository = "https://github.com/init4tech/mdbx"
10+
11+
12+
[profile.release]
13+
opt-level = 3
14+
lto = "thin"
15+
debug = "line-tables-only"
16+
strip = true
17+
panic = "unwind"
18+
codegen-units = 16
19+
20+
[profile.profiling]
21+
inherits = "release"
22+
debug = 2
23+
strip = false
24+
25+
[profile.bench]
26+
inherits = "profiling"
27+
28+
[profile.ci-rust]
29+
inherits = "dev"
30+
strip = true
31+
debug = false
32+
incremental = false
1033

1134
[dependencies]
1235
signet-mdbx-sys= { version = "0.0.1", path = "mdbx-sys" }

0 commit comments

Comments
 (0)