-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcargo.toml
More file actions
42 lines (34 loc) · 899 Bytes
/
cargo.toml
File metadata and controls
42 lines (34 loc) · 899 Bytes
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
[workspace]
resolver = "2"
members = [
"apps/fluster/src-tauri",
"packages/fluster_test_utils",
"packages/fluster_lua",
]
[workspace.package]
version = "0.0.1"
authors = ["Andrew Iglinski"]
description = "Be less dum."
documentation = "https://flusterapp.com"
edition = "2021"
[workspace.lints.rust]
unused_crate_dependencies = "warn"
[workspace.dependencies]
serde = "1.0.219"
serde_json = "1.0.140"
include_dir = "0.7.4"
mlua = { version = "0.10", features = ["lua54", "vendored"] }
# TODO: Remove this and the reliance on console_subscriber when actually building for production.
# TEMP: Move this to each nested project if necessary
# [build]
# rustflags = ["--cfg", "tokio_unstable"]
[profile.dev.package.lancedb]
opt-level = 1
[profile.release]
lto = true
strip = true
opt-level = 3
# panic = 'abort'
codegen-units = 1
# [patch.crates-io]
# chrono = { version = "0.4.41" }