-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (41 loc) · 1.16 KB
/
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
43
44
[package]
name = "executorch"
version = "0.3.0"
authors = ["Barak Ugav <[email protected]>"]
edition = "2021"
rust-version = "1.77.0" # executorch-sys/bindgen_0.70
description = "Rust bindings for ExecuTorch - On-device AI across mobile, embedded and edge for PyTorch"
readme = "README.md"
repository = "https://github.com/barakugav/executorch-rs"
license = "Apache-2.0"
keywords = [
"executorch",
"pytorch",
"machine-learning",
"edge-device",
"bindings",
]
categories = [
"algorithms",
"mathematics",
"embedded",
"no-std",
"no-std::no-alloc",
]
include = ["Cargo.toml", "src/", "README.md", "LICENSE"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
executorch-sys = { path = "executorch-sys", version = "0.3.0", default-features = false }
ndarray = { version = "0.16", default-features = false }
half = { version = "2.4", optional = true }
num-complex = { version = "0.4", optional = true }
cfg-if = "1.0"
[features]
default = ["std"]
std = ["alloc", "executorch-sys/std", "ndarray/std"]
alloc = []
data-loader = ["executorch-sys/data-loader"]
module = ["executorch-sys/module", "std"]
f16 = ["half"]
complex = ["num-complex"]