forked from deepcausality-rs/deep_causality
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 1.11 KB
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
[package]
name = "deep_causality_sparse"
version = "0.1.0"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
repository = "https://github.com/deepcausality/deep_causality.rs"
authors = ["Marvin Hansen <marvin.hansen@gmail.com>", ]
description = "Spare matrix data structure for for deep_causality crate."
documentation = "https://docs.rs/deep_causality"
categories = ["data-structures", "science"]
keywords = ["data-structures", "sliding-window", "grid-array"]
# Exclude all bazel files as these conflict with Bazel workspace when vendored.
exclude = ["*.bazel", "*/*.bazel", "*.bazel.*", "BUILD", "BUILD.bazel", "MODULE.bazel", ".bazelignore",".bazelrc", "tests/**/*"]
[features]
default = ["std"]
std = ["deep_causality_num/default"]
[dependencies.deep_causality_num]
path = "../deep_causality_num"
features = ["default"]
version = "0.1.8"
[[example]]
name = "basic_matrix_ops"
path = "examples/basic_matrix_ops.rs"
[dev-dependencies]
criterion = { version = "0.8" }
deep_causality_rand = { path = "../deep_causality_rand"}
[[bench]]
name = "csr_matrix_benchmarks"
harness = false