-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 974 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
[package]
name = "generic_array_storage"
version = "0.1.2"
authors = ["Diachenko Artem", "Artem [email protected]"]
edition = "2021"
description = "`nalgebra` storage implementation backed by `generic_array`"
documentation = "https://dzuchun.github.io/generic_array_storage/generic_array_storage/index.html"
readme = "README.md"
repository = "https://github.com/Dzuchun/generic_array_storage"
license = "GPL-3.0 license"
keywords = ["nalgebra", "typenum"]
categories = ["no-std", "no-std::no-alloc"]
[dependencies]
generic-array = "1.1.1"
nalgebra = { version = "0.33.2", default-features = false }
typenum = { version = "1.17.0", features = ["no_std"] }
[dev-dependencies]
nalgebra = { version = "0.33.2" }
[lints.rust]
rust_2018_idioms = { level = "deny", priority = -1 }
missing_debug_implementations = "deny"
missing_docs = "deny"
unsafe_code = "deny"
[lints.rustdoc]
broken_intra_doc_links = "forbid"
[lints.clippy]
module_name_repetitions = "allow"