-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathCargo.toml
More file actions
158 lines (148 loc) · 5.07 KB
/
Cargo.toml
File metadata and controls
158 lines (148 loc) · 5.07 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.3.75"
edition = "2024"
repository = "https://github.com/diodeinc/pcb"
homepage = "https://github.com/diodeinc/pcb"
authors = ["Diode Computers, Inc. <founders@diode.computer>"]
[workspace.dependencies]
glam = "0.32"
starlark = { git = "https://github.com/diodeinc/starlark-rust", rev = "78a00c907de1f31ec4edee929447459612da9c94" }
starlark_map = { git = "https://github.com/diodeinc/starlark-rust", rev = "78a00c907de1f31ec4edee929447459612da9c94" }
starlark_syntax = { git = "https://github.com/diodeinc/starlark-rust", rev = "78a00c907de1f31ec4edee929447459612da9c94" }
allocative = { git = "https://github.com/diodeinc/starlark-rust", rev = "78a00c907de1f31ec4edee929447459612da9c94" }
ruff_python_formatter = { git = "https://github.com/astral-sh/ruff", tag = "0.15.11" }
ruff_formatter = { git = "https://github.com/astral-sh/ruff", tag = "0.15.11" }
gltfpack-sys = "0.1.2"
mimalloc = "0.1"
similar = "3"
ipc2581 = { path = "crates/ipc2581" }
pcb-command-runner = { path = "crates/pcb-command-runner" }
pcb-eda = { path = "crates/pcb-eda" }
pcb-component-gen = { path = "crates/pcb-component-gen" }
pcb-layout = { path = "crates/pcb-layout" }
pcb-sch = { path = "crates/pcb-sch" }
pcb-canonical = { path = "crates/pcb-canonical" }
pcb-zen = { path = "crates/pcb-zen" }
pcb-zen-core = { path = "crates/pcb-zen-core" }
pcb-ui = { path = "crates/pcb-ui" }
pcb-kicad = { path = "crates/pcb-kicad" }
pcb-sexpr = { path = "crates/pcb-sexpr", features = ["serde"] }
pcb-starlark-lsp = { path = "crates/pcb-starlark-lsp" }
pcb-fmt = { path = "crates/pcb-fmt" }
pcb-test-utils = { path = "crates/pcb-test-utils" }
pcb-sim = { path = "crates/pcb-sim" }
pcb-diode-api = { path = "crates/pcb-diode-api" }
pcb-docs = { path = "crates/pcb-docs" }
pcb-ipc2581-tools = { path = "crates/pcb-ipc2581-tools" }
pcb-docgen = { path = "crates/pcb-docgen" }
anyhow = "1.0"
atomicwrites = "0.4"
arboard = { version = "3.4", default-features = false }
ariadne = { version = "0.6", features = ["auto-color"] }
aws-config = "1.8.16"
aws-credential-types = "1.2.14"
aws-sigv4 = "1.4.3"
aws-smithy-runtime-api = "1.12.0"
axoupdater = { version = "0.10", features = ["blocking"] }
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive", "wrap_help"] }
colored = "3"
derive_more = { version = "1.0.0", features = ["full"] }
dirs = "6"
dupe = "0.9.1"
duct = "1.1.0"
env_logger = "0.11"
indicatif = "0.18"
inquire = "0.9"
itertools = "0.14"
heck = "0.5.0"
hex = "0.4"
log = "0.4"
minijinja = "2.5"
open = "5"
path-slash = "0.2.1"
termtree = "1"
regex = "1.11.0"
natord = "1.0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3.10.1"
thiserror = "2"
toml = "1"
tokio = { version = "1", features = ["rt-multi-thread"] }
uuid = { version = "1.4", features = ["v4", "v5", "js"] }
walkdir = "2.3"
deunicode = "1.6"
insta = { version = "1.47", features = ["yaml", "filters", "json"] }
assert_cmd = "2.0"
assert_fs = "1.0"
base64 = "0.22"
console_error_panic_hook = "0.1"
console_log = "1.0.0"
crossterm = "0.29"
ctrlc = { version = "3.4", features = ["termination"] }
ratatui = "0.30"
ratatui-image = { version = "10.0", default-features = false, features = ["image-defaults", "crossterm"] }
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "webp"] }
csv = "1.4"
debugserver-types = "0.5.0"
derivative = "2.2"
either = "1.8"
fixedbitset = "0.5"
globset = "0.4.13"
lsp-server = "0.7.2"
lsp-types = "0.94.1"
maplit = "1.0.2"
md-5 = "0.11"
os_pipe = "1.1.4"
paste = "1.0"
pathdiff = "0.2"
petgraph = "0.8"
rayon = "1.10"
reqwest = { version = "0.13", default-features = false, features = ["blocking", "charset", "http2", "json", "multipart", "rustls", "system-proxy"] }
rand = "0.8"
serde-wasm-bindgen = "0.6"
serde_yaml = "0.9"
serial_test = "3.0"
smallvec = "1.15"
strip-ansi-escapes = "0.2"
supports-hyperlinks = "3"
tar = { version = "0.4", default-features = false }
ruzstd = "0.8"
terminal_size = "0.4.0"
terminal_hyperlink = "0.1"
termimad = "0.34"
syntect = { version = "5", default-features = false, features = ["default-syntaxes", "default-themes", "regex-onig"] }
textwrap = "0.16"
unicode-width = "0.2.0"
urlencoding = "2.1"
wasm-bindgen = "0.2.100"
zip = { version = "8", default-features = false, features = ["deflate"] }
fslock = "0.2"
rust_decimal = { version = "1.38", features = ["serde", "serde-with-str"] }
rust_decimal_macros = "1.38"
comfy-table = { version = "7.2", features = ["custom_styling"] }
url = "2.5"
ignore = "0.4"
sha2 = "0.11"
semver = { version = "1.0", features = ["serde"] }
quick-xml = "0.39"
zstd = "0.13"
jiff = "0.2"
blake3 = "1.5"
rusqlite = { version = "0.39", features = ["bundled"] }
r2d2 = "0.8"
r2d2_sqlite = "0.33"
unicode-normalization = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
tracing-chrome = "0.7"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "fat" # Maximum link-time optimization
codegen-units = 1 # Better optimization
strip = "debuginfo" # Strip debug symbols