-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (51 loc) · 1.22 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "hardshare"
description = "share your hardware through the rerobots infrastructure"
homepage = "https://hardshare.dev/"
repository = "https://github.com/rerobots/hardshare"
license = "Apache-2.0"
version = "0.13.2-devel"
authors = ["rerobots, Inc. <[email protected]>"]
edition = "2018"
readme = "README.md"
include = [
"/src",
"/CHANGELOG",
"/keys/public.pem",
]
[dependencies]
actix = "0.13"
actix-codec = "0.5"
actix-web = "4"
actix-ws = "0.3"
awc = { version = "3.5", features = ["rustls"] }
base64 = "0.21"
bytes = "0.5"
chrono = "0.4.38"
env_logger = "0.11.5"
futures = "0.3"
home = "0.5.3"
image = "0.24.6"
log = "0.4"
rand = "0.8.5"
rerobots = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
tempfile = "3.1"
tokio = { version = "1.40", features = ["net", "rt", "signal", "sync"] }
[target.'cfg(target_os="linux")'.dependencies]
v4l = { version = "0.14", features = ["v4l2"] }
[target.'cfg(target_os="macos")'.dependencies]
openpnp_capture = "0.2.4"
[dependencies.clap]
version = "2.33.0"
default-features = false
features = [ "color" ]
[profile.release]
panic = "abort"
[dev-dependencies]
assert_cmd = "1.0"
insta = "1.36"
mockito = "0.30.0"
tempfile = "3.1"