rsfi 0.1.0

rsfi focuses on establishing a robust foundation for exploring and utilitizing containers, spaces, fields, and other abstractions in Rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.86.0"
name = "rsfi"
version = "0.1.0"
authors = ["FL03 <joe@pzzld.org> (https://github.com/FL03)"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "rsfi focuses on establishing a robust foundation for exploring and utilitizing containers, spaces, fields, and other abstractions in Rust."
homepage = "https://github.com/FL03/rsfi/wiki"
readme = "README.md"
keywords = [
    "containers",
    "hkt",
    "space",
    "mathematics",
    "science",
]
categories = []
license = "Apache-2.0"
repository = "https://github.com/FL03/rsfi.git"

[package.metadata.docs.rs]
all-features = false
features = ["default"]
rustc-args = [
    "--cfg",
    "docsrs",
]
version = "v{{version}}"

[package.metadata.release]
no-dev-version = true
tag-name = "v{{version}}"

[features]
alloc = [
    "rsfi-core/alloc",
    "rsfi-traits/alloc",
]
complex = [
    "rsfi-core/complex",
    "rsfi-traits/complex",
]
default = ["std"]
full = [
    "default",
    "complex",
    "ndarray",
    "hashbrown",
    "json",
    "rand",
    "serde",
]
hashbrown = [
    "rsfi-core/hashbrown",
    "rsfi-traits/hashbrown",
]
json = [
    "alloc",
    "serde",
    "serde_json",
]
macros = ["rsfi-core/macros"]
ndarray = [
    "rsfi-core/ndarray",
    "rsfi-traits/ndarray",
]
nightly = ["rsfi-core/nightly"]
rand = [
    "rsfi-core/rand",
    "rsfi-traits/rand",
    "rng",
]
rayon = [
    "rsfi-core/rayon",
    "rsfi-traits/rayon",
]
rng = ["rsfi-core/rng"]
serde = [
    "rsfi-core/serde",
    "rsfi-traits/serde",
]
serde_json = ["rsfi-core/serde_json"]
std = [
    "alloc",
    "rsfi-core/std",
    "rsfi-traits/std",
]
wasi = [
    "rsfi-core/wasi",
    "rsfi-traits/wasi",
]
wasm = [
    "wasm_bindgen",
    "rsfi-core/wasm",
    "rsfi-traits/wasm",
]
wasm_bindgen = [
    "rsfi-core/wasm_bindgen",
    "rsfi-traits/wasm_bindgen",
]

[lib]
name = "rsfi"
path = "lib.rs"

[[example]]
name = "interest"
path = "examples/interest.rs"
required-features = ["default"]

[[test]]
name = "default"
path = "tests/default.rs"

[[bench]]
name = "default"
path = "benches/default.rs"
harness = false

[dependencies.rsfi-core]
version = "0.1.0"
default-features = false

[dependencies.rsfi-traits]
version = "0.1.0"
default-features = false

[dev-dependencies.criterion]
version = "0.8"
features = ["plotters"]

[dev-dependencies.tracing]
version = "0.1"
features = [
    "attributes",
    "default",
    "log",
]
default-features = false

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
    "fmt",
    "env-filter",
]