-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 1.06 KB
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
[package]
name = "fractal"
version = "0.1.0"
edition.workspace = true
publish = false
[features]
default = []
cuda = ["fractal-core/cuda", "fractal-primitives-private/cuda"]
[workspace]
members = [
"fractal-core",
"fractal-primitives-private",
"fractal-eval-private",
"fractal-tokenizer",
]
default-members = [
".",
"fractal-core",
"fractal-primitives-private",
"fractal-eval-private",
"fractal-tokenizer",
]
resolver = "2"
[workspace.package]
edition = "2021"
[workspace.dependencies]
burn = { version = "=0.20.1", default-features = false, features = ["std", "autodiff", "candle", "wgpu"] }
burn-candle = "=0.20.1"
rand = "0.8"
[patch.crates-io]
burn-candle = { path = "vendor/burn-candle" }
[dependencies]
burn = { workspace = true }
fractal-core = { path = "fractal-core" }
fractal-tokenizer = { path = "fractal-tokenizer" }
fractal-primitives-private = { path = "fractal-primitives-private" }
fractal-eval-private = { path = "fractal-eval-private" }
sentencepiece = "0.13.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"