generated from mschoi/template
- Introduced the `prob800` module, implementing a function to count hybrid integers with corresponding unit tests. - Added the `prob853` module, which includes functions for calculating Pisano periods and their factors, along with extensive unit tests. - Updated `mod.rs` to include the new problem modules. - Added the `indicatif` dependency to `Cargo.toml` for progress indication in long-running tasks. - Enhanced the `factor` utility with a new function to derive divisors from prime factorization.
21 lines
505 B
TOML
21 lines
505 B
TOML
[package]
|
|
name = "code_problems"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
approx = "0.5.1"
|
|
clap = { version = "4.5.38", features = ["derive"] }
|
|
encoding = "0.2.33"
|
|
flate2 = "1.1.1"
|
|
indicatif = "0.18.0"
|
|
itertools = "0.14.0"
|
|
ndarray = { version = "0.16.1", features = ["approx"] }
|
|
num = "0.4.3"
|
|
num-bigint = "0.4.6"
|
|
num-integer = "0.1.46"
|
|
num-irrational = "0.3.0"
|
|
regex = "1.11.1"
|
|
strum = { version = "0.27.1", features = ["derive"] }
|
|
ureq = { version = "3.0.11", features = ["charset", "gzip"] }
|