-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 1002 Bytes
/
Cargo.toml
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 <[email protected]>"]
version = "0.6.2"
resolver = "2"
edition = "2024"
rust-version = "1.85"
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 = ["rlib", "staticlib"]
[dependencies]
# for pattern validate
regex = "^1.11.1"
# for random matrix and random number
rand = "^0.8.5"
# for optimize
rayon = "^1.10.0"
[dev-dependencies]
# mnist example deps
image = { version = "^0.25.5", default-features = false, features = [
"png",
"bmp",
] }