forked from tenstorrent/luwen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 829 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
[package]
name = "luwen"
version = "0.4.8"
description = "A high-level interface for safe and efficient access Tenstorrent AI accelerators"
edition = "2021"
license = "Apache-2.0"
authors = [ "Daniel Rosen <drosen@tenstorrent.com>", ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
luwen-core = {path = "crates/luwen-core", version="0.2.0"}
luwen-if = {path = "crates/luwen-if", version="0.5.3"}
luwen-ref = {path = "crates/luwen-ref", version="0.4.1"}
ttkmd-if = {path = "crates/ttkmd-if", version="0.2.0"}
serde = {"version" = "1.0.164", features = ["derive"]}
serde_yaml = "0.9.22"
serde_json = "1.0.117"
bincode = "1.3.3"
rand = "0.8.5"
nom = "7.1.3"
clap = {version = "4.4.14", features = ["derive"]}
[workspace]
members = [
"crates/*",
"app/*"
]