-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1021 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (35 loc) · 1021 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
[workspace]
members = [".", "crates/daftprompt-indexer"]
[package]
name = "daftprompt"
version = "0.1.0"
edition = "2021"
[dependencies]
akar-core = { path = "../akar/crates/akar-core" }
akar-layout = { path = "../akar/crates/akar-layout" }
akar-components = { path = "../akar/crates/akar-components" }
akar-winit = { path = "../akar/crates/akar-winit" }
wgpu = "29.0.0"
winit = "0.30.12"
pollster = "0.4"
log = "0.4"
env_logger = "0.11"
glam = { path = "../glam-rs" }
gix = { path = "../gitoxide/gix", default-features = false, features = ["basic", "sha1"] }
clap = { version = "4", features = ["derive"] }
daftprompt-indexer = { path = "crates/daftprompt-indexer" }
anyhow = "1"
dotenvy = "0.15"
llm-sdk = { path = "../llm-sdk" }
schemars = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
png = "0.17"
[profile.dev]
debug = 0
incremental = true
codegen-units = 256
[profile.dev.package."*"]
debug = 0
opt-level = 0