-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 997 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "rmatrix_ks"
authors = ["Kevin Stephen <qarks@icloud.com>"]
version = "2.0.3"
resolver = "3"
edition = "2024"
rust-version = "1.90"
license = "AGPL-3.0-or-later"
description = "matrix and some algebra in Rust"
readme = "README.md"
keywords = ["math", "linear", "matrix", "number"]
repository = "https://github.com/kands-code/rmatrix"
documentation = "https://docs.rs/rmatrix_ks"
# default config for docs.rs
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "doc_cfg", "--generate-link-to-definition"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "rmatrix_ks"
path = "src/lib.rs"
crate-type = ["lib", "dylib"]
[dependencies]
# for pattern validate
regex = "^1.12.2"
# for random matrix and random number
rand = "^0.9.2"
# for optimize
rayon = "^1.11.0"
[dev-dependencies]
# mnist example deps
image = { version = "^0.25.8", default-features = false, features = [
"png",
"bmp",
] }