-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
20 lines (16 loc) · 858 Bytes
/
Cargo.toml
File metadata and controls
20 lines (16 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "xensieve"
version = "0.8.0"
edition = "2021"
authors = ["Christopher Ariza"]
homepage = "https://github.com/flexatone/xensieve-rs"
repository = "https://github.com/flexatone/xensieve-rs"
license = "MIT"
readme = "README.md"
description = "An implementation of the Xenakis Sieve, providing a Sieve from a string expression that filters integer sequences into iterators of integers, Boolean states, or interval widths. Sieves are built from Residuals, defined as a modulus (M) and a shift (S), notated `M@S`. Sieve string expressions, and Sieve structs, support complementation, intersection, symmetric difference, and union operations on Residuals with operators `!`, `&`, `^` and `|`, respectively."
keywords = ["sieve", "residual", "modulus", "set", "xenakis"]
categories = [
"mathematics",
"data-structures",
]
[dependencies]