BREP 0.3.0

BREP — umbrella crate for the BREP CAD kernel family: re-exports the geometry kernel (always) plus the gizmos, wgpu render engine, and eframe application behind feature flags.
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 = "BREP"
version = "0.3.0"
build = false
include = [
    "src/**/*.rs",
    "/Cargo.toml",
    "/README.md",
    "/LICENSE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "BREP — umbrella crate for the BREP CAD kernel family: re-exports the geometry kernel (always) plus the gizmos, wgpu render engine, and eframe application behind feature flags."
readme = "README.md"
keywords = [
    "cad",
    "brep",
    "geometry",
    "nurbs",
    "kernel",
]
categories = [
    "mathematics",
    "graphics",
    "algorithms",
]
license-file = "LICENSE.md"
repository = "https://github.com/mmiscool/NURBS_BREP_kernel"

[features]
app = [
    "dep:brep_app",
    "render",
]
default = []
full = ["app"]
gizmos = ["dep:brep_gizmos"]
parallel = ["brep_kernel/parallel"]
reconstruction = ["dep:brep_reconstruction"]
render = [
    "dep:brep_render",
    "gizmos",
]

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

[dependencies.brep_app]
version = "0.2"
optional = true
package = "BREP_app"

[dependencies.brep_gizmos]
version = "0.2"
optional = true
package = "BREP_gizmos"

[dependencies.brep_kernel]
version = "0.3"
package = "BREP_kernel"

[dependencies.brep_reconstruction]
version = "0.1"
optional = true
package = "BREP_reconstruction"

[dependencies.brep_render]
version = "0.2"
optional = true
package = "BREP_render"