-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (52 loc) · 1.11 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[workspace.package]
authors = ["FL03 <[email protected]>"]
categories = ["mathematics", "science"]
description = "rsdiff aims to provide a solid foundation for developing robust machine-learning systems in Rust."
edition = "2021"
homepage = "https://github.com/FL03/rsdiff/wikis"
keywords = ["acme", "autodiff", "mathematics", "tensor"]
license = "Apache-2.0"
repository = "https://github.com/FL03/rsdiff"
readme = "README.md"
version = "0.0.1"
# version = "0.3.2-nightly"
[workspace]
default-members = [
"rsdiff"
]
exclude = [
]
members = [
"rsdiff",
"core",
"derive",
"graphs",
"macros",
"math",
]
resolver = "2"
[workspace.dependencies]
paste = "1"
scsys = "0.2.1"
strum = { features = ["derive"], version = "0.26" }
smart-default = "0.7"
[profile.dev]
codegen-units = 256
debug = true
debug-assertions = true
incremental = true
lto = false
panic = "unwind"
rpath = false
opt-level = 0
overflow-checks = true
[profile.release]
codegen-units = 16
debug = false
debug-assertions = false
incremental = false
lto = false
panic = "unwind"
rpath = false
opt-level = "z"
overflow-checks = false