-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
145 lines (136 loc) · 4.7 KB
/
Copy pathCargo.toml
File metadata and controls
145 lines (136 loc) · 4.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
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
[workspace]
resolver = "2"
members = [
".",
"crates/alumina-interface-client",
"crates/alumina-interface-core",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.95"
license = "MIT"
repository = "https://github.com/timschmidt/alumina-interface"
publish = false
[workspace.dependencies]
alumina-interface-client = { path = "crates/alumina-interface-client" }
alumina-interface-core = { path = "crates/alumina-interface-core" }
alumina-board = { path = "../alumina-firmware/crates/alumina-board" }
alumina-capability = { path = "../alumina-firmware/crates/alumina-capability" }
alumina-clock = { path = "../alumina-firmware/crates/alumina-clock" }
alumina-config = { path = "../alumina-firmware/crates/alumina-config" }
alumina-diagnostics = { path = "../alumina-firmware/crates/alumina-diagnostics" }
alumina-graph-ir = { path = "../alumina-firmware/crates/alumina-graph-ir" }
alumina-job = { path = "../alumina-firmware/crates/alumina-job" }
alumina-machine-ir = { path = "../alumina-firmware/crates/alumina-machine-ir" }
alumina-motion = { path = "../alumina-firmware/crates/alumina-motion" }
alumina-net = { path = "../alumina-firmware/crates/alumina-net" }
alumina-protocol = { path = "../alumina-firmware/crates/alumina-protocol" }
alumina-runtime = { path = "../alumina-firmware/crates/alumina-runtime" }
alumina-service = { path = "../alumina-firmware/crates/alumina-service" }
alumina-sim = { path = "../alumina-firmware/crates/alumina-sim" }
alumina-storage = { path = "../alumina-firmware/crates/alumina-storage" }
board-mks-tinybee = { path = "../alumina-firmware/boards/mks-tinybee" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
csgrs = { path = "../csgrs", default-features = false }
hypercurve = { path = "../hypercurve", default-features = false }
hypergraphics = { path = "../hypergraphics" }
hyperlimit = { path = "../hyperlimit", default-features = false }
hyperpath = { path = "../hyperpath", default-features = false }
hyperreal = { path = "../hyperreal", default-features = false, features = ["serde"] }
hypersolve = { path = "../hypersolve", default-features = false }
[package]
name = "alumina-interface"
description = "Authoritative exact browser CAD/CAM and control interface for Alumina"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
publish.workspace = true
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
alumina-board.workspace = true
alumina-capability.workspace = true
alumina-clock.workspace = true
alumina-config.workspace = true
alumina-diagnostics.workspace = true
alumina-interface-client.workspace = true
alumina-interface-core.workspace = true
alumina-job.workspace = true
alumina-machine-ir.workspace = true
alumina-protocol.workspace = true
alumina-sim.workspace = true
alumina-storage.workspace = true
board-mks-tinybee.workspace = true
hypercurve.workspace = true
hypergraphics.workspace = true
hyperreal.workspace = true
log = "0.4.27"
serde_json.workspace = true
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
eframe = { version = "0.30", default-features = false, features = [
"default_fonts",
"glow",
"wayland",
"x11",
] }
egui_glow = { version = "0.30", default-features = false }
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1"
console_log = "1.0"
eframe = { version = "0.30", default-features = false, features = [
"default_fonts",
"glow",
] }
egui_glow = { version = "0.30", default-features = false }
js-sys = "0.3"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = [
"DedicatedWorkerGlobalScope",
"Blob",
"Document",
"Element",
"ErrorEvent",
"Event",
"File",
"FileList",
"HtmlAnchorElement",
"HtmlCanvasElement",
"HtmlElement",
"HtmlInputElement",
"MessageEvent",
"Node",
"Storage",
"Url",
"Window",
"Worker",
"WorkerOptions",
"WorkerType",
] }
[profile.release]
codegen-units = 1
debug-assertions = false
incremental = false
lto = "fat"
opt-level = "z"
overflow-checks = true
panic = "abort"
strip = "symbols"
# The checked-out sibling repositories are the development authority. These
# patches also prevent transitive version requirements from resolving to older
# published Hyper crates.
[patch.crates-io]
hypercurve = { path = "../hypercurve" }
hypergraphics = { path = "../hypergraphics" }
hyperlattice = { path = "../hyperlattice" }
hyperlimit = { path = "../hyperlimit" }
hypermesh = { path = "../hypermesh" }
hyperpath = { path = "../hyperpath" }
hyperphysics = { path = "../hyperphysics" }
hyperreal = { path = "../hyperreal" }
hypersolve = { path = "../hypersolve" }
hypertri = { path = "../hypertri" }