CellRune
CellRune is a Rust library for bounded XLSX/XLSM reading and deterministic formula calculation. It keeps the workbook read from disk immutable, returns recalculated values in a separate snapshot, and can retain an exact package backing for explicit round-trip writing.
Rust installation
The CellRune Rust crate 0.1.13 requires Rust 1.88 or newer.
cargo add cellrune@0.1.13
Or add the dependency directly:
[dependencies]
cellrune = "0.1.13"
Features
- reads
.xlsxfiles from paths, byte slices, orRead + Seekstreams; - opens package-backed
.xlsxand.xlsmdocuments with exact SHA-256 identity and bounded round-trip preservation; - preserves sheet order, sparse cells, formulas, saved results, defined names, and relevant number-format metadata;
- exposes merged ranges and validated worksheet-owned Excel tables, including stable table and column IDs, complete filter/sort/formula/style metadata, and case-insensitive lookup indexes;
- resolves typed multi-area, 3-D, structured table, current-row, and spill references under cumulative reference and dependency budgets;
- inspects workbook and sheet-local defined names without running a calculation session, preserving rectangular, 3-D, ordered multi-area, empty, dynamic, external, invalid, and unsupported results;
- expands shared formulas while preserving absolute and relative references;
- returns typed formula values and stable per-cell calculation issues in one result snapshot;
- reports normalized per-workbook function demand and exposes the implemented function catalog;
- evaluates first-class and defined-name
LAMBDAcallables, including immediate invocation,ISOMITTED,MAP,BYROW,BYCOL,REDUCE,SCAN, andMAKEARRAY, under explicit recursion and iteration limits; - evaluates audited 3-D aggregate references across workbook tab order, including hidden sheets and reverse-written endpoints, without expanding the sheet span into dependency edges;
- applies configurable limits to ZIP, XML, workbook, formula, dependency, text, and array work;
- never executes macros, never follows external links, and never reads the host clock for
TODAY()orNOW(); - returns stable error and issue codes for programmatic handling;
- materializes recalculated typed results into existing
.xlsx/.xlsmpackages with strict or explicit cache-invalidation policies; - creates canonical
.xlsxworkbooks and applies typed cell, formula, sheet, name, table rename, table-column rename, table-row resize, number-format, date-system, and calculation-property edits throughWorkbookDraft; - reads, queries, preserves, and explicitly authors SpreadsheetML phonetic annotations and default frozen panes without mixing presentation state into formula calculation;
- exposes the same versioned read/edit/calculate/write contract through typed Python and Node.js/TypeScript native packages;
- supports atomic typed edit batches, persistent parsed/dependency state, safe incremental recalculation, bounded result deltas, cooperative cancellation, and stale-result rejection;
- provides a local stdio MCP server with high-level open, inspect, edit, recalculate, range-read, delta, and verified Save As tools over the same interop session; and
- raw-copies unchanged package entries without exposing ZIP or XML implementation types.
Usage
use cellrune::{
CalculationCellResult, CalculationOptions, ReadOptions, calculate_workbook, read_xlsx_path,
};
fn main() -> Result<(), Box<dyn std::error::Error>> {
let workbook = read_xlsx_path("input.xlsx", ReadOptions::default())?;
let calculation = calculate_workbook(&workbook, CalculationOptions::default());
for (cell, result) in calculation.cells() {
match result {
CalculationCellResult::Value(value) => println!("{cell:?}: {value:?}"),
CalculationCellResult::Unavailable(issue) => {
eprintln!("{cell:?}: {}", issue.code().as_str());
}
}
}
Ok(())
}
Reading and calculation are separate operations. calculate_workbook does not modify the source
WorkbookSnapshot or its saved XLSX results. It attempts every formula in the workbook:
successfully calculated cells contain a typed Value, while a cell that cannot be calculated
contains a structured Unavailable(CalculationIssue). One unavailable formula does not suppress
independent results; dependent formulas report BlockedByUpstream when applicable.
Volatile functions require deterministic inputs through CalculationOptions:
with_today_serial for TODAY() and with_now_serial for NOW(). Use
with_arithmetic_semantics and with_financial_solver_semantics to opt into the raw IEEE-754 and
extended-search behavior shipped through 0.1.2; the defaults select Excel-compatible cancellation
and Microsoft's function-specific solver budgets. Use
supported_function_catalog for the build's exact function surface and scan_function_usage to
summarize the functions used by a workbook. scan_formula_capabilities remains available as an
optional static inventory for migration planning and user-interface reporting; calculation does
not require it.
CellRune 0.1.13 adds exactly 20 official Excel-facing names: F.DIST, F.DIST.RT, F.INV,
F.INV.RT, F.TEST, FDIST, FINV, FTEST, T.DIST, T.DIST.2T, T.DIST.RT, T.INV,
T.INV.2T, T.TEST, TDIST, TINV, TTEST, Z.TEST, ZTEST, and COVARIANCE.S. The shared
incomplete-beta kernel evaluates lower and upper tails directly, including representable
subnormal tails, and uses a uniform large-shape expansion near the distribution center. Stable
online sample moments, together with scaled variance and standard-error combinations in the
hypothesis tests, protect extreme finite inputs from avoidable intermediate overflow. The source
catalog contains 367 official names and 368 accepted entries including the OOXML dummy-function
marker.
The regex functions target PCRE2 semantics with bounded compile, matching, capture, and output
work. CellRune's prebuilt Python, Node.js, and MCP artifacts pin the bundled PCRE2 10.46 engine;
Rust consumers use pcre2-sys linkage policy and can set PCRE2_SYS_STATIC=1 to select its bundled
source build.
INDEX follows Excel's zero-index reference behavior: a zero row or column selects the complete
corresponding column or row, and zero for both selects the complete input range. Scalar formulas
apply legacy implicit intersection, while array formulas can materialize the selected rectangle.
Unary and binary array operators that combine whole-column references use one common extent: the
greatest populated row among the columns those operands reference, with a one-row minimum for an
otherwise empty sheet. Cells in other columns of the same sheet do not widen it, so the value
depends only on the cells the expression's own dependency rectangles cover and a full and an
incremental recalculation agree. Missing cells within that extent are blanks, and directly
resolved source arrays plus operator outputs are charged to its cumulative array-cell budget. Function calls keep function-defined
argument boundaries: each array argument is evaluated under its own bounded context, and a
function's return does not establish a whole-column operator extent by itself. When another direct
whole-column operand has established such an enclosing context, the returned array is charged to
that context before the operator consumes it.
Direct 3-D references are accepted by SUM, AVERAGE, AVERAGEA, COUNT, COUNTA, MAX,
MAXA, MIN, MINA, PRODUCT, STDEV.P, STDEV.S, VAR.P, and VAR.S (including the
catalogued legacy aliases). The span follows workbook tab order, so hidden sheets participate and
reversed endpoint spelling produces the same set. Excel-defined direct 3-D error contexts remain
values: INDEX and VLOOKUP return #VALUE!, while OFFSET returns #REF!. Other direct 3-D
consumers remain an explicit UnsupportedSheetRange capability issue. A bare 3-D reference or one
composed through an array operator returns #VALUE!; it does not silently inherit an enclosing
aggregate's collection policy. The static capability scan and evaluator share this policy.
For repeated programmatic edits, use WorkbookCalculationSession instead of rebuilding stateless
calculation state after every cell:
use cellrune::{
CalculationOptions, CancellationToken, CellAddress, CellValue, EditBatch, FiniteNumber,
RecalculationMode, SheetId, WorkbookCalculationSession, WorkbookChange,
};
fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut session = WorkbookCalculationSession::create();
let sheet = SheetId::new(1)?;
let receipt = session.apply_changes(
0,
EditBatch::new([WorkbookChange::set_cell_value(
sheet,
CellAddress::from_a1("A1")?,
CellValue::Number(FiniteNumber::new(42.0)?),
)]),
)?;
let delta = session.recalculate(
RecalculationMode::Auto,
CalculationOptions::default(),
CancellationToken::new(),
)?;
assert_eq!(delta.result_revision(), receipt.result_revision());
Ok(())
}
Auto evaluates a proven dirty subset and falls back to the same full-workbook calculation
semantics when formula, name, sheet, option, dynamic-reference, or spill topology is uncertain.
Forced incremental mode fails closed instead of guessing. Sessions use optimistic semantic
revisions for atomic edits, retain bounded result-delta history, and reject stale calculations.
A batch whose accepted operations make no semantic change keeps the current revision, topology,
and installed calculation instead of forcing a redundant recalculation.
Long-running work can be prepared outside the session lock with prepare_recalculation, cancelled
through a request-owned CancellationToken, and installed only if its source revision is still
current.
Table authoring uses stable identities rather than positional names. Construct
WorkbookChange::rename_table, rename_table_column, or resize_table_rows and include it in the
same atomic EditBatch as other workbook changes. Renames update cell formulas, defined names,
calculated-column formulas, and totals-row formulas through one typed source-span rewrite path.
Resize preserves table identity and filter/sort orientation, materializes calculated and totals
cells, and supports expanding a header-only empty table. Through
WorkbookCalculationSession, formula rewriting and table materialization are bounded by
SessionLimits. A successful EditReceipt lists the affected stable table IDs; any invalid
target, collision, rewrite error, resource limit, or cancellation rolls the whole batch back.
Use analyze_defined_name, analyze_defined_name_with_options, or
analyze_defined_name_cancellable to inspect a defined name against an immutable
WorkbookSnapshot. The typed result distinguishes a single rectangle, a 3-D span, ordered
multi-area geometry, a valid empty reference, dynamic formulas, constants, external targets,
invalid definitions, unsupported expressions, and missing names.
open_xlsx_document_* retains the exact input package for writing.
write_recalculated_xlsx_bytes, write_recalculated_xlsx, and
write_recalculated_xlsx_path bind a calculation to that exact input, update typed formula
caches, remove stale calculation chains, preserve unrelated package content, and reopen the output
before reporting success. Strict mode rejects incomplete calculations without producing an
artifact; cache invalidation is an explicit opt-in policy. write_preserved_xlsx_bytes remains
available for an unchanged preservation copy.
WorkbookDraft::new creates a canonical workbook, while
WorkbookDraft::from_document retains the source package for preservation-aware edits. Calculate
the draft's current workbook() and pass both objects to write_xlsx_draft_bytes,
write_xlsx_draft, or write_xlsx_draft_path. A mutation that changes workbook semantics advances
the semantic revision, so a calculation made before the latest effective edit is rejected. An
accepted no-op keeps the revision unchanged. Path writes are Save As operations and never replace
an existing destination unless replacement is explicitly enabled. Canonical drafts can author
dynamic-array formulas with WorkbookDraft::set_cell_dynamic_formula; calculation resolves their
spill region, detects occupied targets, and materializes followers for writing. Existing
document-backed dynamic formulas can be recalculated without changing their metadata, while adding
or replacing one is rejected until source metadata-index merging is implemented.
Package-backed documents expose phonetic annotations and frozen panes through
XlsxDocument::presentation(). WorkbookDraft provides atomic set_annotated_text,
set_phonetics, clear_phonetics, set_frozen_pane, and clear_frozen_pane mutations.
Phonetic base ranges are zero-based half-open UTF-16 code-unit ranges. Presentation-only changes
have a separate revision and reuse an otherwise current calculation. Source rich-text phonetic
editing, RTL pane authoring, and PHONETIC() calculation remain explicit unsupported boundaries.
Runnable examples are shipped in the crate package under examples/ and live at
crates/cellrune/examples/ in this repository. From the repository root, run one with
cargo run -p cellrune --example <name> -- [arguments]; from an extracted crate package, omit
-p cellrune. See the public
llms.txt reference for the complete
example inventory and a condensed public API reference.
Language bindings
Python uses the mainstream PyO3 + maturin native-extension path. Node.js and TypeScript use napi-rs over stable Node-API with Promise-backed native work and exact-version platform packages. Neither binding requires a consumer Rust toolchain when installed from a wheel or prebuilt npm artifact.
The 0.1.13 release line targets Python 3.10 through 3.14 and Node.js 22 or newer. Install the bindings with:
python -m pip install "cellrune==0.1.13"
npm install "@cellrune/node@0.1.13"
The bindings expose the same versioned read, edit, calculate, and write contract. Native package
availability remains platform-specific; package managers must select a wheel or exact-version npm
platform package compatible with the current runtime.
Python inspect_defined_name and Node.js inspectDefinedName expose the typed defined-name query.
The existing apply_changes/applyChanges v1 shapes are unchanged; the separate
apply_changes_v2/applyChangesV2 methods add stable-ID table rename, table-column rename, and
table-row resize plus changed_table_ids/changedTableIds receipts.
Python workbooks are context managers:
from cellrune import Workbook
with Workbook.create() as workbook:
workbook.set_number("Sheet1", "A1", 41.0)
workbook.set_formula("Sheet1", "B1", "=A1+1")
workbook.calculate()
# 0.1.2-compatible calculation remains available when required:
workbook.calculate(
arithmetic_semantics="ieee_754",
financial_solver_semantics="extended_search",
)
workbook.save("output.xlsx")
In a Node.js ES module, close the workbook in finally:
import { Workbook } from "@cellrune/node";
const workbook = Workbook.create();
try {
workbook.setNumber("Sheet1", "A1", 41);
workbook.setFormula("Sheet1", "B1", "=A1+1");
await workbook.calculate();
await workbook.calculate({
arithmeticSemantics: "ieee_754",
financialSolverSemantics: "extended_search",
});
await workbook.save("output.xlsx");
} finally {
workbook.close();
}
Python and Node.js close() calls are idempotent. Once close() returns, the binding-owned native
session has been released. An active calculation is cooperatively cancelled, and subsequent
operations fail with the stable interop.session.closed code.
Local MCP
cellrune-mcp is a local stdio-only MCP 2025-11-25 server for AI hosts. It exposes a finite set
of high-level workbook workflow tools; spreadsheet functions remain formulas inside the workbook
and are not registered one by one as MCP tools. Start it with one or more explicit filesystem
roots:
cargo run --locked -p cellrune-mcp -- \
--root /absolute/path/to/approved/workbooks
Its 12 tools are workbook_create, workbook_open, workbook_close, workbook_summary,
workbook_read_range, workbook_function_usage, workbook_scan_capabilities,
workbook_apply_changes, workbook_apply_changes_v2, workbook_recalculate,
workbook_changes_since, and workbook_save_as. The v2 edit tool adds stable-ID table rename,
table-column rename, and table-row resize while retaining the v1 edit shapes.
The server also publishes read-only JSON resources at cellrune://support/functions and the
cellrune://sessions/{session_id}/summary resource template. Operators can set
--max-sessions, --session-ttl-seconds, --max-response-bytes, --max-workbook-bytes, and
--log-level; run cellrune-mcp --help for their defaults. Values outside the server's compiled
policy limits are rejected at startup.
cellrune-mcp is not published to a package registry. Prebuilt bundles for Linux, macOS, and
Windows are attached to each GitHub release,
alongside their license materials and build provenance.
An MCP client can launch a release binary with configuration equivalent to:
{
"mcpServers": {
"cellrune": {
"command": "/absolute/path/to/cellrune-mcp",
"args": ["--root", "/absolute/path/to/approved/workbooks"]
}
}
}
The server canonicalizes configured roots at startup. Every workbook path supplied to a tool must
be absolute and resolve inside one of those roots. The server bounds workbook/session/response
resources, writes protocol traffic only to stdout, writes diagnostics only to stderr, and never
provides a remote transport. Inputs are opened through an approved-root capability and read from
the same file handle under the configured archive-byte ceiling. Existing destinations are
protected unless the server starts with --allow-overwrite and a request also sets
replace_existing. Save As retains an open destination-directory capability from validation
through atomic installation, so renaming or replacing the ambient parent path cannot redirect a
write outside the approved root. Resource lists use byte-bounded cursor pagination. At session
capacity, create/open may evict the least-recently-used idle session; active sessions are never
evicted. Give the server the narrowest practical root; another process with write access inside
that root can still change workbook inputs and contents.
Tool results carry untrusted content. Cell text, sheet names, and defined names come from the workbook and are returned verbatim, so a crafted workbook can place text that reads as an instruction into a tool result. That is the same trust boundary as any other document a model reads: the server does not rewrite workbook content, and the consuming application is responsible for treating tool output as data rather than as instructions.
To inspect the local server before client integration:
npx --yes @modelcontextprotocol/inspector@1.0.0 \
cargo run --locked -p cellrune-mcp -- \
--root /absolute/path/to/approved/workbooks
Scope
CellRune supports ordinary Transitional SpreadsheetML workbooks and a scoped set of Excel formula syntax and functions. Unsupported formulas are returned as explicit per-cell calculation issues; other formulas continue to calculate.
The following are outside the current scope:
.xls,.xlsb,.ods, and CSV;- macro, add-in, external-workbook, query, or data-connection execution;
- 3-D references outside the audited direct-consumer policy above;
- data-table calculation; and
- iterative calculation and automatic host-time inputs.
docs/NUMERICS.md
records where calculated values differ from Excel and why, and documents the two calculation
options added in 0.1.3: ArithmeticSemantics and FinancialSolverSemantics, which default to
Excel's behavior and can be set to Ieee754 and ExtendedSearch for what 0.1.2 did.
Verification
Run the standard Rust test suite from the repository root:
cargo test --workspace --all-features --locked
Formula compatibility is regression-tested against committed Excel-saved and Apache POI
workbooks. See the
conformance/README.md
reference for the fixture layout, classifications, focused audit command, and maintenance policy.
License
CellRune is dual-licensed under either the MIT License or the Apache License, Version 2.0, at your option. You need to comply with only one of them, not both. Apache-2.0 includes an explicit patent grant; MIT does not. Both license texts are included in the source distribution.
Versions 0.1.0 through 0.1.2 were published under the MIT License alone and remain available
under those terms. The dual license applies from version 0.1.3 onward. Dependency license
information is provided in THIRD_PARTY_LICENSES.md.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cellrune-0.1.13.tar.gz.
File metadata
- Download URL: cellrune-0.1.13.tar.gz
- Upload date:
- Size: 749.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56ea24c1bd94adf822c185fbd852aeb7d236e5fc513c30912ae32f540fe52d5f
|
|
| MD5 |
40fe8ab11caca08db94aafd5aea27f4f
|
|
| BLAKE2b-256 |
4ababa4023e33b97dd3a15e755c3c028ba0a7b1e5f090cff9c4877c3ecec8b44
|
Provenance
The following attestation bundles were made for cellrune-0.1.13.tar.gz:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13.tar.gz -
Subject digest:
56ea24c1bd94adf822c185fbd852aeb7d236e5fc513c30912ae32f540fe52d5f - Sigstore transparency entry: 2389401924
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8fd0a5c4773971183d6e85c1ec24765b628e8ec50f6b8cfa8e0a7ddf0bd9dbb
|
|
| MD5 |
e3ab013229ece5f8c3f59371a104e2b8
|
|
| BLAKE2b-256 |
4cb3942f51366c5b50dca31b6573f886a06b386be1a53e86e6896c8f04e7f9b3
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp314-cp314-win_amd64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp314-cp314-win_amd64.whl -
Subject digest:
f8fd0a5c4773971183d6e85c1ec24765b628e8ec50f6b8cfa8e0a7ddf0bd9dbb - Sigstore transparency entry: 2389404710
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14e58d22480777395046f50c30465fe85c05e6c311950effd9a66ba0d760a18f
|
|
| MD5 |
c16680b89206b1246f75860bfe2a10d2
|
|
| BLAKE2b-256 |
0036be5f9f3b88c6af9e1e3caf532c5fd207d326c52f452f035b4ad5b13feb6f
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp314-cp314-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp314-cp314-manylinux_2_28_x86_64.whl -
Subject digest:
14e58d22480777395046f50c30465fe85c05e6c311950effd9a66ba0d760a18f - Sigstore transparency entry: 2389404061
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a7c786ff1ac05e4ccfb0b541d6cbea36a2a755f07294bec00951cac8cb7a4e2
|
|
| MD5 |
1403ae0cdc0e90621a35832410d38b8b
|
|
| BLAKE2b-256 |
0fa6193535f146e2b4299f7fa8b4de4c1003984b7727a8fe6175d3a3bff1ac0b
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
4a7c786ff1ac05e4ccfb0b541d6cbea36a2a755f07294bec00951cac8cb7a4e2 - Sigstore transparency entry: 2389403778
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78b00992f1284519ea7afa5ac630f46830be2dea8bd8516814ac8ce797ebf536
|
|
| MD5 |
780defd83f89175a51be3ce18ac7292e
|
|
| BLAKE2b-256 |
2749177155570d36f024206b00a2b8b192e1713aeceffe7abaa7d4fcb4d97a63
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp313-cp313-win_amd64.whl -
Subject digest:
78b00992f1284519ea7afa5ac630f46830be2dea8bd8516814ac8ce797ebf536 - Sigstore transparency entry: 2389402444
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a58a555c44803ffdab6f87c0369e8761fb20b32e2f071c6d361ccb0a3167cf2
|
|
| MD5 |
e5eb38cd11b725050718fcf5ba614aba
|
|
| BLAKE2b-256 |
5b1633767b0fb808a52798e901897bdefd3a721f3be53c9787cc0e301484daf4
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
1a58a555c44803ffdab6f87c0369e8761fb20b32e2f071c6d361ccb0a3167cf2 - Sigstore transparency entry: 2389403375
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b18c8fdc3ab74abda4c272e98381653995d20e6a6e797b828f9f1bd4108bb187
|
|
| MD5 |
dec3bdee087f756ceb98789137ac19e7
|
|
| BLAKE2b-256 |
ee35aeacd03a506d76496987c3637b47c430d5f3b61b9f7922cf37e527d2f6a3
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
b18c8fdc3ab74abda4c272e98381653995d20e6a6e797b828f9f1bd4108bb187 - Sigstore transparency entry: 2389404469
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b47848345e35b673e9e2753661f604eba382d4aaebad023a189e242cde1ff73c
|
|
| MD5 |
660ff7eaaed7bd08f4f158bcf3991735
|
|
| BLAKE2b-256 |
96005005dc138f175b900e4e38c5d7d167c57068f04c90365e97e089a84d999a
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp312-cp312-win_amd64.whl -
Subject digest:
b47848345e35b673e9e2753661f604eba382d4aaebad023a189e242cde1ff73c - Sigstore transparency entry: 2389403017
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d94eda2fdf0c84e0228ab5e24f21d5e9f085c9dc7c0a64c302fda8c52d847ec2
|
|
| MD5 |
305c2e867ad893ad25a06ccf964b9196
|
|
| BLAKE2b-256 |
e6643a36b9854d3a7fabb065c1e45ec71cd5a1d39798265728b4a0d186190eac
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
d94eda2fdf0c84e0228ab5e24f21d5e9f085c9dc7c0a64c302fda8c52d847ec2 - Sigstore transparency entry: 2389404269
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a5fe5741c35c77ef68f3db17c56b2f26155499eff71ae705e3ec32dda00c1fa
|
|
| MD5 |
a970fd1c3590c3506c082500dd977297
|
|
| BLAKE2b-256 |
39f9d7552f34727b0eb51a8c97011f53bf39a15b10580c48ed5c4ee7046898af
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
7a5fe5741c35c77ef68f3db17c56b2f26155499eff71ae705e3ec32dda00c1fa - Sigstore transparency entry: 2389402155
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c27e7487bd7abb8966065156a0c2a16cc7f8bab01f3fa715f39a9e19b897bd23
|
|
| MD5 |
0b37f0225e16899d5e9e2c6abfcefe9b
|
|
| BLAKE2b-256 |
dae59ba147bce3b99d0836ab143060ec4a0066cc9728b8359bd5eb9cdef5a0fb
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp311-cp311-win_amd64.whl -
Subject digest:
c27e7487bd7abb8966065156a0c2a16cc7f8bab01f3fa715f39a9e19b897bd23 - Sigstore transparency entry: 2389405204
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5eda2bd07a2175e8a12750037e4ccc3c5893dc82b5cc2b90380b9a1d27a40e9
|
|
| MD5 |
05e9b09af844840feaf41178b7941789
|
|
| BLAKE2b-256 |
7eb565c843fd60b80a86859ffc19b276f2b15cbbac2c99baf6f101e22cefc0c2
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
b5eda2bd07a2175e8a12750037e4ccc3c5893dc82b5cc2b90380b9a1d27a40e9 - Sigstore transparency entry: 2389402841
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
257e45aed5b420267b23ac9406be4ecf1e26636900e3b0b2ca0cd2ccee283cf5
|
|
| MD5 |
9637549582ea81b01e23d35c36482b27
|
|
| BLAKE2b-256 |
cd79fef7e88b720947552a9eed37efcc0c8e8cd48643a4bb9985c47f61eff824
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
257e45aed5b420267b23ac9406be4ecf1e26636900e3b0b2ca0cd2ccee283cf5 - Sigstore transparency entry: 2389403553
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46ed15a14bb3c751b5c254ca54ae9741470974c4b0c2a9a17d63e43e18dc207d
|
|
| MD5 |
b8ec9d7f473b4d4a99a879cf88cd7405
|
|
| BLAKE2b-256 |
3eac49b1f164aa2f43bd5334d5092a1e2e892d17ac29ff23c7f9c6a7b2186aff
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp310-cp310-win_amd64.whl -
Subject digest:
46ed15a14bb3c751b5c254ca54ae9741470974c4b0c2a9a17d63e43e18dc207d - Sigstore transparency entry: 2389404962
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16beaa21747c3a9f731a2171fa87c6dfa0db7dc3565b956e636996c815b8cf62
|
|
| MD5 |
c1ba8daacd5e43bded35119afc30e19c
|
|
| BLAKE2b-256 |
1b7bab3dcdea74feec0422859142e5a632b6c44c31883ca5918878d1b977a07a
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
16beaa21747c3a9f731a2171fa87c6dfa0db7dc3565b956e636996c815b8cf62 - Sigstore transparency entry: 2389403191
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file cellrune-0.1.13-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: cellrune-0.1.13-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
509a9edcf2b23314f166bece6d07df0e4ba6efcd3c09a72e1ca8da5c237a50a3
|
|
| MD5 |
c5f8fa651418890ccdaa47c07005a5c4
|
|
| BLAKE2b-256 |
c40f5e98892c2cf283743c999c76414ab55d70d1b4617d663c6a12b30a95613c
|
Provenance
The following attestation bundles were made for cellrune-0.1.13-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on emulette/cellrune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cellrune-0.1.13-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
509a9edcf2b23314f166bece6d07df0e4ba6efcd3c09a72e1ca8da5c237a50a3 - Sigstore transparency entry: 2389402605
- Sigstore integration time:
-
Permalink:
emulette/cellrune@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/emulette
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5d45e298f95ac1d9585cb4009e38b0d84385a6fd -
Trigger Event:
push
-
Statement type: