-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (61 loc) · 1.7 KB
/
Copy pathCargo.toml
File metadata and controls
71 lines (61 loc) · 1.7 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[workspace]
resolver = "2"
members = ["crates/gesttalt", "crates/agents", "crates/db", "crates/xtask"]
default-members = ["crates/gesttalt"]
[workspace.package]
edition = "2024"
version = "0.1.0"
publish = false
license = "Apache-2.0"
[workspace.dependencies]
gesttalt = { path = "crates/gesttalt" }
agents = { path = "crates/agents" }
db = { path = "crates/db" }
gpui = "0.2.2"
anyhow = "1.0"
log = "0.4"
env_logger = "0.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
semver = "1.0"
sea-orm = { version = "1", default-features = false, features = ["sqlx-sqlite", "runtime-tokio-rustls", "macros"] }
sea-orm-migration = { version = "1", default-features = false, features = ["runtime-tokio-rustls", "sqlx-sqlite"] }
async-trait = "0.1"
dirs = "6"
thiserror = "2.0"
tempfile = "3.20"
tokio = { version = "1", features = ["macros", "rt"] }
ureq = { version = "2.12", features = ["json"] }
which = "8.0"
image = { version = "0.25", default-features = false, features = ["png"] }
[workspace.lints.rust]
unexpected_cfgs = { level = "allow" }
[workspace.lints.clippy]
dbg_macro = "deny"
todo = "deny"
declare_interior_mutable_const = "deny"
redundant_clone = "deny"
disallowed_methods = "deny"
style = { level = "allow", priority = -1 }
type_complexity = "allow"
too_many_arguments = "allow"
large_enum_variant = "allow"
[profile.dev]
split-debuginfo = "unpacked"
incremental = true
codegen-units = 16
[profile.dev.build-override]
codegen-units = 16
split-debuginfo = "unpacked"
debug = true
[profile.release]
debug = "limited"
lto = "thin"
codegen-units = 1
[profile.release.package]
gesttalt = { codegen-units = 16 }
[profile.release-fast]
inherits = "release"
debug = "full"
lto = false
codegen-units = 16