forked from jafioti/luminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (38 loc) · 970 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
[package]
name = "luminal"
version = "0.2.0"
edition = "2021"
rust-version = "1.78"
description = "Deep learning at the speed of light."
license = "MIT OR Apache-2.0"
[dependencies]
itertools = "0.11.0"
num-traits = "0.2.16"
petgraph = "0.6.4"
rand = "0.8.5"
urlencoding = "2.1.2"
webbrowser = "1.0.0"
dyn-clone = "1.0.12"
half = "*"
tinyvec = {version="1.6.0", features=["serde"]}
term_size = "0.3.2"
colored = "2.0.4"
regex = "1.9.5"
rustc-hash = "1.1.0"
uuid = { version = "1.7.0", features = ["v4"] }
as-any = "0.3.1"
egg = "0.9.5"
symbolic_expressions = "5.0.3"
serde = {version="1.0.202", features=["derive"]}
thread_local = "1.1.8"
generational-box = "0.5.6"
[dev-dependencies]
dfdx = { version = "0.13", features = ["f16"] }
[workspace]
members = [
"examples/*",
"crates/luminal_cpu",
"crates/luminal_nn",
"crates/luminal_training",
]
exclude = ["examples/yolo_v8", "crates/luminal_cuda", "crates/luminal_metal", "crates/luminal_metal_super"]