-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
34 lines (28 loc) · 872 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
[package]
name = "autodiff"
version = "0.7.0"
authors = ["Egor Larionov <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "An automatic differentiation library"
edition = "2021"
homepage = "https://github.com/elrnv/autodiff"
repository = "https://github.com/elrnv/autodiff"
readme = "README.md"
keywords = ["auto", "derivative", "automatic", "differentiation"]
[badges]
travis-ci = { repository = "elrnv/autodiff", branch = "master" }
[dependencies]
num-traits = "0.2"
approx = { version = "0.5", optional = true }
nalgebra = { version = "0.32", optional = true }
bytemuck = { version = "1", optional = true }
simba = { version = "0.8", optional = true }
cgmath = { version = "0.18", optional = true }
[dev-dependencies]
rand = "0.8"
approx = "0.5"
cgmath = "0.18"
[features]
default = ["cwise"]
na = ["nalgebra", "approx", "simba"]
cwise = []