[package]
edition = "2024"
rust-version = "1.85"
name = "smooth-frame"
version = "0.2.0"
build = false
include = [
"Cargo.lock",
"Cargo.toml",
"LICENSE",
"README.md",
"demo.svg",
"examples/**",
"src/**",
"tests/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generate Sketch-like smooth corner and smooth frame cubic Bezier paths."
documentation = "https://docs.rs/smooth-frame"
readme = "README.md"
keywords = [
"smooth",
"bezier",
"svg",
"sketch",
"corner",
]
categories = [
"graphics",
"rendering",
]
license = "Apache-2.0"
repository = "https://github.com/MarcellGu/SmoothFrame.git"
[lib]
name = "smooth_frame"
path = "src/lib.rs"
[[example]]
name = "demo"
path = "examples/demo/main.rs"
[[test]]
name = "corner"
path = "tests/corner.rs"
[[test]]
name = "frame"
path = "tests/frame.rs"
[[test]]
name = "path"
path = "tests/path.rs"
[[test]]
name = "rect"
path = "tests/rect.rs"
[[test]]
name = "sketchtool"
path = "tests/sketchtool.rs"
[dependencies]