상부 구조물: - DeckSlabIR + DeckSlabBuilder + 기하학 (직사각형 슬래브 스위프) 연결부: - BearingIR + BearingBuilder (카탈로그 기반, KDS 기본값 포함) 하부 구조물: - PierIR + PierBuilder + 기하학 (다주 지원, 코핑 포함) - AbutmentIR + AbutmentBuilder + 기하학 (흉벽 + 기초 + 날개벽) core에 BearingType·PierType·ColumnShape·AbutmentType 열거형 추가 kernel: sweep.rs 공유 모듈 (sweep_profile_flat·box·prism·merge) psc_i.rs → sweep.rs 의존으로 리팩터 GeomKernel trait에 4개 메서드 추가 (상부→하부 문서화 주석) cargo test 57개 전부 통과 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
658 B
TOML
22 lines
658 B
TOML
[package]
|
|
name = "cimery-kernel"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[features]
|
|
# Enable the full OpenCASCADE kernel backend.
|
|
# Requires OCCT installed/compiled — see cimery/CLAUDE.md for setup.
|
|
# Build: cargo build -p cimery-kernel --features occt
|
|
occt = ["dep:opencascade"]
|
|
|
|
[dependencies]
|
|
cimery-core = { workspace = true }
|
|
cimery-ir = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
log = { workspace = true }
|
|
# opencascade is OPTIONAL — only compiled with --features occt
|
|
opencascade = { git = "https://github.com/bschwind/opencascade-rs", optional = true }
|
|
|
|
[dev-dependencies]
|
|
cimery-core = { workspace = true }
|