.PHONY: clippy
clippy:
	cargo clippy -- -D warnings  # ← 严格模式，用于 CI

.PHONY: build-dev  ## Build the development version of the package
build-dev:
	maturin develop

.PHONY: build-release  ## Build the release version of the package
build-prd:
	cargo clippy -- -D warnings
	maturin develop --release

httpd:
	RUST_LOG=error ihttpd init