-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (61 loc) · 1.66 KB
/
Cargo.toml
File metadata and controls
67 lines (61 loc) · 1.66 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "edge-impulse-runner"
version = "2.0.0"
edition = "2021"
description = "A Rust library for running Edge Impulse Linux models"
authors = ["Fernando Jiménez Moreno <fernando@edgeimpulse.com>"]
license = "BSD-3-Clause"
homepage = "https://github.com/edgeimpulse/edge-impulse-runner-rs"
repository = "https://github.com/edgeimpulse/edge-impulse-runner-rs"
readme = "README.md"
build = "build.rs"
keywords = ["ai", "ml", "edgeai", "tinyml", "edgeimpulse"]
categories = [
"embedded",
"computer-vision",
"development-tools"
]
exclude = [
".github/**",
".gitignore",
"Cargo.lock",
"Cargo.toml.orig",
".cargo_vcs_info.json",
"rustfmt.toml"
]
[dependencies]
hex = "0.4.3"
hmac = "0.12.1"
mime_guess = "2.0.5"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "multipart"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10.8"
thiserror = "1.0"
tracing = "0.1.41"
urlencoding = "2.1.3"
rand = "0.8"
tempfile = "3.10.0"
edge-impulse-ffi-rs = { git = "https://github.com/edgeimpulse/edge-impulse-ffi-rs.git", rev = "5c87783", optional = true }
[features]
default = ["ffi"]
eim = []
ffi = ["edge-impulse-ffi-rs"]
[target.'cfg(target_os = "macos")'.dev-dependencies]
cocoa = "0.26.0"
core-graphics-types = "0.2.0"
core-foundation = "0.9"
objc = "0.2.7"
[dev-dependencies]
clap = { version = "4.4", features = ["derive"] }
env_logger = "0.11.6"
gstreamer = "0.23.4"
gstreamer-app = "0.23.4"
gstreamer-video = "0.23.4"
hound = "3.5"
image = "0.25.5"
inquire = "0.7"
mockito = "1.6.1"
regex = "1.11.1"
tokio = { version = "1.43.0", features = ["full", "test-util"] }
tracing-test = "0.2.5"