fsrs 5.2.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 = "5.2.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"

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

[[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.burn]
version = "0.17.1"
features = [
    "std",
    "train",
    "ndarray",
    "metrics",
]
default-features = false

[dependencies.itertools]
version = "0.14.0"

[dependencies.log]
version = "0.4"

[dependencies.ndarray]
version = "0.16.1"

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

[dependencies.rand]
version = "0.9.2"

[dependencies.rayon]
version = "1.8.0"

[dependencies.serde]
version = "1.0.219"

[dependencies.snafu]
version = "0.8.6"

[dependencies.strum]
version = "0.27.2"
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.41"
features = [
    "std",
    "clock",
]
default-features = false

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

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

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

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

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