cargo stuff rm

This commit is contained in:
Pere Diaz Bou
2024-11-25 10:11:08 +01:00
parent b43e8e46f6
commit 1a663a6ed7
3 changed files with 6 additions and 0 deletions

1
Cargo.lock generated
View File

@@ -1151,6 +1151,7 @@ dependencies = [
name = "limbo_core"
version = "0.0.9"
dependencies = [
"bumpalo",
"cfg_block",
"chrono",
"criterion",

View File

@@ -51,6 +51,10 @@ codegen-units = 1
panic = "abort"
lto = true
[profile.bench-profile]
inherits = "release"
debug = true
[profile.dist]
inherits = "release"
lto = "thin"

View File

@@ -52,6 +52,7 @@ serde = { version = "1.0", features = ["derive"] }
pest = { version = "2.0", optional = true }
pest_derive = { version = "2.0", optional = true }
rand = "0.8.5"
bumpalo = { version = "3.16.0", features = ["collections", "boxed"] }
[target.'cfg(not(target_family = "windows"))'.dev-dependencies]
pprof = { version = "0.14.0", features = ["criterion", "flamegraph"] }