-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·30 lines (25 loc) · 1 KB
/
Cargo.toml
File metadata and controls
executable file
·30 lines (25 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "constraint-theory-python"
version = "0.1.0"
edition = "2021"
description = "Python bindings for Constraint Theory - deterministic geometric snapping"
license = "MIT"
repository = "https://github.com/SuperInstance/constraint-theory-python"
documentation = "https://github.com/SuperInstance/constraint-theory-core"
readme = "README.md"
keywords = ["geometry", "pythagorean", "deterministic", "pyo3", "rust"]
categories = ["science", "mathematics", "api-bindings"]
# Version pinning requirements (PASS 8)
# This crate depends on constraint-theory-core with semver compatibility
# Python bindings version 0.1.x is compatible with core 1.0.x
[lib]
name = "constraint_theory_python"
crate-type = ["cdylib"]
[dependencies]
# PyO3 for Python bindings - LTS version
pyo3 = { version = "0.20", features = ["extension-module"] }
# Core library - pinned for stability (PASS 8)
# Compatible versions: >= 1.0.0, < 2.0.0
constraint-theory-core = "1.0.1"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]