vcad 0.1.0

Parametric CAD in Rust — CSG modeling with multi-format export
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "vcad"
version = "0.1.0"
build = false
exclude = [
    "web/",
    "assets/",
    "*.glb",
    "*.stl",
    "*.dxf",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parametric CAD in Rust — CSG modeling with multi-format export"
readme = "README.md"
keywords = [
    "cad",
    "csg",
    "stl",
    "gltf",
    "parametric",
]
categories = [
    "rendering::data-formats",
    "science",
]
license = "MIT"
repository = "https://github.com/ecto/vcad"

[features]
default = ["gltf"]
gltf = [
    "dep:gltf",
    "dep:base64",
]
step = ["opencascade"]
usd = []

[lib]
name = "vcad"
path = "src/lib.rs"

[[example]]
name = "bracket"
path = "examples/bracket.rs"

[[example]]
name = "generate_renders"
path = "examples/generate_renders.rs"

[[example]]
name = "mascot"
path = "examples/mascot.rs"

[[example]]
name = "plate"
path = "examples/plate.rs"

[dependencies.anyhow]
version = "1"

[dependencies.base64]
version = "0.22"
optional = true

[dependencies.gltf]
version = "1.4"
optional = true

[dependencies.manifold-rs]
version = "0.6"

[dependencies.nalgebra]
version = "0.33"

[dependencies.opencascade]
version = "0.2"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.thiserror]
version = "2"

[dependencies.toml]
version = "0.8"