-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
42 lines (36 loc) · 956 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
35
36
37
38
39
40
41
42
[package]
name = "bullet_lib"
version = "1.0.0"
edition = "2021"
rust-version = "1.83"
description = "Neural Network Trainer"
authors = ["Jamie Whiting"]
license = "MIT"
repository = "https://github.com/jw1912/bullet"
readme = "README.md"
[features]
cudnn = ["bullet_backend/cudnn"]
hip = ["bullet_backend/hip"]
gh-actions = ["bullet_backend/gh-actions"]
[dependencies]
bullet_backend = { path = "backend" }
bullet_core = { workspace = true }
bulletformat = { workspace = true }
rand = "0.8.5"
rand_distr = "0.4.3"
montyformat = { workspace = true }
sfbinpack = "0.2.0"
[workspace]
resolver = "2"
members = ["backend", "backend/shared", "core", "utils"]
[workspace.package]
license = "MIT"
authors = ["Jamie Whiting"]
[workspace.dependencies]
bullet_core = { path = "core" }
bulletformat = "1.8.0"
montyformat = { git = 'https://github.com/official-monty/montyformat.git', tag = "v0.7.0" }
[profile.release]
debug = true
codegen-units = 1
lto = true