-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 742 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 742 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
[package]
name = "flashtile"
version = "0.1.0"
edition = "2024"
[features]
default = []
# Static link tilelang/tvm/tvm-ffi for binary distribution (CUDA remains dynamic)
# Also embeds CPP templates for single-file distribution
static-link = ["dep:rust-embed"]
[dependencies]
bitflags = "2.9"
blake3 = "1.6"
clap = { version = "4.5.54", features = ["derive"] }
cudarc = { version = "0.18.2", features = ["nvrtc", "cuda-version-from-build-system"] }
libloading = "0.8"
libc = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
half = "2.4"
smallvec = "1.13"
thiserror = "1.0"
tvm-ffi = { path = "3rdparty/tvm-ffi/rust/tvm-ffi" }
# For static-link embedded templates
rust-embed = { version = "8.5", optional = true }