rust-version = "1.92" in [workspace.package], inherited by every crate. 1.92 is the floor: wgpu (clawhdf5-gpu) requires it, and the whole workspace, Python bindings included, checks cleanly on it. ci-test.sh reads the version from Cargo.toml and checks the workspace on exactly that toolchain, so the manifests and the README badge cannot drift from what actually builds. The badge said 1.75, below edition 2024's own floor. Co-Authored-By: Claude Opus 5.5 (1M context) <[email protected]>
22 lines
621 B
TOML
22 lines
621 B
TOML
[package]
|
|
name = "clawhdf5-cli"
|
|
version = "2.7.0"
|
|
edition = "2024"
|
|
rust-version.workspace = true
|
|
license = "MIT"
|
|
description = "CLI for clawhdf5 agent memory — create, save, search, recall, stats"
|
|
repository = "https://git.redclaw.dev/quantumclaw/clawhdf5"
|
|
keywords = ["hdf5", "ai", "memory", "agent", "cli"]
|
|
categories = ["command-line-utilities", "science"]
|
|
readme = "../../README.md"
|
|
|
|
[[bin]]
|
|
name = "clawhdf5"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clawhdf5-agent = { path = "../clawhdf5-agent", version = "2.7.0" }
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
serde_json = "1"
|
|
serde = { workspace = true }
|