Skip to content

Commit

Permalink
Add atomcad-app crate, with initial application runner logic.
Browse files Browse the repository at this point in the history
  • Loading branch information
maaku committed Jul 16, 2024
1 parent 1f9ffdb commit 93a5618
Show file tree
Hide file tree
Showing 7 changed files with 561 additions and 2 deletions.
19 changes: 19 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,18 @@ authors = ["Machine Phase Systems <hello@machinephase.systems>"]
license = "MPL-2.0"
edition = "2021"

[workspace]
members = ["crates/*"]

[workspace.dependencies]
# atomCAD
app = { package = "atomcad-app", path = "crates/app" }
# rust
readonly = "0.2.12"

[dependencies]
# atomCAD
app = { workspace = true }

[target.'cfg(target_family = "wasm")'.dependencies]
# Web platform support
Expand Down
11 changes: 11 additions & 0 deletions crates/app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "atomcad-app"
version = "0.1.0"
publish = false
authors = ["Machine Phase Systems <hello@machinephase.systems>"]
license = "MPL-2.0"
edition = "2021"

[dependencies]
# rust
readonly = { workspace = true }
Loading

0 comments on commit 93a5618

Please sign in to comment.