-
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) · 888 Bytes
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 888 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
[workspace]
resolver = "2"
members = [
"neural-net",
"numeric",
"par-iter",
"rand",
"small-vec",
"json",
"json-derive",
"json-derive-test",
"texten",
"zero-grad",
"zerr",
]
[workspace.package]
version = "0.1.0"
authors = ["Ilya Builuk <ilya.builuk@gmail.com>"]
license = "Apache-2.0"
keywords = ["zero-dependency"]
categories = ["algorithms"]
readme = "README.md"
homepage = "https://github.com/reinterpretcat/zero_depend"
repository = "https://github.com/reinterpretcat/zero_depend"
edition = "2024"
[workspace.dependencies]
neural-net = { path = "neural-net" }
numeric = { path = "numeric" }
par-iter = { path = "par-iter" }
rand = { path = "rand" }
small-vec = { path = "small-vec" }
json = { path = "json" }
json-derive = { path = "json-derive" }
texten = { path = "texten" }
zero-grad = { path = "zero-grad" }
zerr = { path = "zerr" }