Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michael-f-bryan/scad-rs
A Rust implementation of the OpenSCAD virtual machine.
https://github.com/michael-f-bryan/scad-rs
bytecode-virtual-machine cad code-cad compiler openscad parser rust
Last synced: 6 days ago
JSON representation
A Rust implementation of the OpenSCAD virtual machine.
- Host: GitHub
- URL: https://github.com/michael-f-bryan/scad-rs
- Owner: Michael-F-Bryan
- License: apache-2.0
- Created: 2022-07-25T03:29:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-06T07:20:48.000Z (about 2 years ago)
- Last Synced: 2023-02-26T10:05:07.034Z (over 1 year ago)
- Topics: bytecode-virtual-machine, cad, code-cad, compiler, openscad, parser, rust
- Language: Rust
- Homepage: https://michael-f-bryan.github.io/scad-rs
- Size: 6.55 MB
- Stars: 15
- Watchers: 2
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE_APACHE.md
Awesome Lists containing this project
README
# OpenSCAD Rust
[![Continuous integration](https://github.com/Michael-F-Bryan/scad-rs/workflows/Continuous%20Integration/badge.svg?branch=main)](https://github.com/Michael-F-Bryan/scad-rs/actions)
([API Docs][api-docs])
A Rust implementation of the [OpenSCAD][scad-website] virtual machine.
## For Developers
When you initially check out the repository, make sure to also fetch the
`openscad` submodule we use for integration/compatibility testing.```console
$ git clone --recursive https://github.com/Michael-F-Bryan/scad-rs.git
```I'll typically use [`cargo watch`][cargo-watch] to automatically recompile the
project and run the test suite.```console
$ cargo watch --clear --ignore '*.snap.new' \
-x "check --workspace" \
-x "test --workspace" \
-x "doc --workspace --document-private-items" \
-x "build --workspace --release" \
-x "clippy --workspace -- --deny warnings"
```## License
This project is licensed under either of
- Apache License, Version 2.0, ([LICENSE-APACHE](./LICENSE-APACHE.md) or
)
- MIT license ([LICENSE-MIT](./LICENSE-MIT.md) or
)at your option.
It is recommended to always use [`cargo crev`][crev] to verify the
trustworthiness of each of your dependencies, including this one.### Contribution
Unless you explicitly state otherwise, any contribution intentionally
submitted for inclusion in the work by you, as defined in the Apache-2.0
license, shall be dual licensed as above, without any additional terms or
conditions.The intent of this crate is to be free of soundness bugs. The developers will
do their best to avoid them, and welcome help in analysing and fixing them.[api-docs]: https://michael-f-bryan.github.io/scad-rs
[cargo-watch]: https://crates.io/crates/cargo-watch
[crev]: https://github.com/crev-dev/cargo-crev
[scad-website]: https://openscad.org/