-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 898 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (36 loc) · 898 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
40
[package]
name = "dxpr"
version = "0.2.3"
authors = ["Will Sturgeon <willstrgn@gmail.com>"]
edition = "2021"
description = "Differentiable expression templates in compile-time, dependency-free, no_std Rust."
documentation = "https://docs.rs/dxpr/latest/dxpr/"
readme = "README.md"
homepage = "https://crates.io/crates/dxpr"
repository = "https://github.com/wrsturgeon/dxpr"
license = "Zlib"
# license-file = "LICENSE"
keywords = [
"expression-templates",
"expression",
"differentiable",
"autograd",
"generic",
]
categories = [
"algorithms",
"data-structures",
"mathematics",
"no-std",
"rust-patterns",
]
exclude = ["ci.sh", "test-coverage.sh"]
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# none!
[features]
default = ["std"]
std = []
[badges]
maintenance = { status = "actively-developed" }