Files
modeling-app/rust/kcl-python-bindings/Cargo.toml
Adam Chalmers 91e306f447 Release KCL 67 (#6751)
Breaking changes:

 - Fully removed positional arguments from function calls. Keyword arguments are now the only way to call a function.

Added:

 - Warn on usage of the unknown numeric suffix (#6690)

Fixed:

 - Fix units bug with involuteCircular (#6711)
 - Importing 3D files on Windows (#6697)
2025-05-07 17:54:45 -07:00

32 lines
942 B
TOML

[package]
name = "kcl-python-bindings"
version = "0.3.67"
edition = "2021"
repository = "https://github.com/kittycad/modeling-app"
exclude = ["tests/*", "files/*", "venv/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "kcl"
crate-type = ["cdylib"]
bench = false
[dependencies]
anyhow = { workspace = true }
kcl-lib = { path = "../kcl-lib", features = [
"pyo3",
"engine",
"disable-println",
] }
#kcl-lib = { path = "../modeling-app/src/wasm-lib/kcl", default-features = false, features = ["pyo3", "engine", "disable-println"] }
kittycad-modeling-cmds = { workspace = true }
miette = { workspace = true, features = ["fancy"] }
pyo3 = { workspace = true, features = ["serde", "experimental-async"] }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
uuid = { workspace = true, features = ["v4"] }
[lints]
workspace = true