-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
92 lines (79 loc) · 2.67 KB
/
Cargo.toml
File metadata and controls
92 lines (79 loc) · 2.67 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[workspace]
resolver = "2"
members = [
"crates/signex-app",
"crates/signex-engine",
"crates/signex-bom",
"crates/signex-types",
"crates/signex-render",
"crates/signex-widgets",
"crates/signex-erc",
"crates/signex-erc-dsl",
"crates/signex-output",
"crates/chrome-catalog",
"crates/signex-library",
"crates/signex-library-server",
]
[workspace.package]
version = "0.11.0"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/alplabai/signex"
[workspace.dependencies]
# UI framework
iced = { version = "0.14", features = ["wgpu", "canvas", "advanced", "svg", "image", "tokio"] }
iced_aw = { version = "0.13", default-features = false, features = [
"tabs", "tab_bar", "card", "context_menu", "number_input",
"color_picker", "menu", "drop_down", "selection_list",
"wrap", "spinner", "sidebar", "labeled_frame", "badge",
] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Identity
uuid = { version = "1.23.1", features = ["v4", "v7", "serde"] }
# Error handling
thiserror = "2"
anyhow = "1"
# File dialogs
rfd = "0.17.2"
# DSL parser
chumsky = "0.12"
regex = "1"
# Output generation
pdf-writer = "0.14"
rust_xlsxwriter = "0.77"
tiny-skia = "0.11"
ttf-parser = "0.25"
# Internal crates
signex-types = { path = "crates/signex-types" }
signex-engine = { path = "crates/signex-engine" }
signex-bom = { path = "crates/signex-bom" }
signex-render = { path = "crates/signex-render" }
signex-widgets = { path = "crates/signex-widgets" }
signex-erc = { path = "crates/signex-erc" }
signex-erc-dsl = { path = "crates/signex-erc-dsl" }
signex-output = { path = "crates/signex-output" }
# Library subsystem (v0.9 plan, restored at v0.11)
chrono = { version = "0.4", features = ["serde"] }
sha2 = "0.10"
# Library subsystem — Phase 1 (adapters: local-git, database server, distributor APIs, search, AI-stub)
git2 = { version = "0.19", default-features = false, features = ["vendored-libgit2"] }
keyring = "3"
tantivy = "0.22"
oauth2 = "5"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
axum = { version = "0.7", features = ["ws"] }
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio-rustls", "postgres", "sqlite", "macros", "chrono", "uuid", "migrate"] }
pdf-extract = "0.7"
tower-http = { version = "0.6", features = ["cors", "trace", "auth", "validate-request"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Internal — library
signex-library = { path = "crates/signex-library" }
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"