fsrs 6.3.0

FSRS for Rust, including Optimizer and Scheduler
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"
name = "fsrs"
version = "6.3.0"
authors = ["Open Spaced Repetition"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FSRS for Rust, including Optimizer and Scheduler"
homepage = "https://github.com/open-spaced-repetition"
readme = "README.md"
keywords = [
    "spaced-repetition",
    "algorithm",
    "fsrs",
    "machine-learning",
]
categories = [
    "algorithms",
    "science",
]
license = "BSD-3-Clause"
repository = "https://github.com/open-spaced-repetition/fsrs-rs"

[features]
default = []
experimental_cost_adr = ["dep:rand_distr"]

[lib]
name = "fsrs"
path = "src/lib.rs"

[[example]]
name = "cost_adr"
path = "examples/cost_adr.rs"
required-features = ["experimental_cost_adr"]

[[example]]
name = "migrate"
path = "examples/migrate.rs"

[[example]]
name = "optimize"
path = "examples/optimize.rs"

[[example]]
name = "schedule"
path = "examples/schedule.rs"

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

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

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

[dependencies.itertools]
version = "0.14.0"

[dependencies.log]
version = "0.4"

[dependencies.ndarray]
version = "0.17.2"

[dependencies.priority-queue]
version = "=2.7.0"

[dependencies.rand]
version = "0.10.1"

[dependencies.rand_distr]
version = "0.6.0"
optional = true

[dependencies.rayon]
version = "1.12.0"

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.snafu]
version = "0.9.1"

[dependencies.strum]
version = "0.28.0"
features = ["derive"]

[dev-dependencies.burn]
version = "0.17.1"
features = [
    "std",
    "train",
    "ndarray",
    "sqlite-bundled",
    "metrics",
]
default-features = false

[dev-dependencies.chrono]
version = "0.4.44"
features = [
    "std",
    "clock",
]
default-features = false

[dev-dependencies.chrono-tz]
version = "0.10.4"

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.csv]
version = "1.4.0"

[dev-dependencies.fern]
version = "0.7.1"

[dev-dependencies.rusqlite]
version = "0.34.0"