-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
69 lines (63 loc) · 2.17 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
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "viam-rust-utils"
version = "0.2.14"
edition = "2021"
license = "Apache-2.0"
description = "Utilities designed for use with Viamrobotics's SDKs"
repository = "https://github.com/viamrobotics/rust-utils"
authors = ["Viam, inc. <contact@viam.com>"]
[lib]
crate-type = ["cdylib","lib","staticlib"]
# TODO(RSDK-4119): Enable doctests after getting autogenerated ones to compile.
doctest = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
dialdbg = []
[[bin]]
name = "viam-dialdbg"
path = "src/dialdbg/main.rs"
required-features = ["dialdbg"]
[dependencies]
anyhow = { version = "1.0", features = ["backtrace"]}
base64 = "0.13.0"
byteorder = "1.4.3"
bytes = "1.1.0"
chrono = "0.4.26"
clap = { version = "4.3.19", features = ["derive"] }
dashmap = "5.4.0"
derivative = "2.2.0"
ffi_helpers = "0.3.0"
float-cmp = "0.9.0"
futures = {version = "0.3", default-features = false, features = ["alloc", "executor"]}
futures-core = "0.3"
futures-util = "0.3"
http = "0.2.7"
http-body = {version = "0.4.4"}
hyper = { version = "0.14.20", features = ["full"] }
interceptor = "0.12.0"
libc = {version = "0.2"}
local-ip-address = "0.5.5"
log = "0.4.17"
log4rs = "1.2.0"
nalgebra = "0.31.4"
prost = "0.11"
prost-types = "0.11"
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = {version = "1.19", features = ["rt-multi-thread", "time", "fs", "macros", "net"]}
tokio-stream = {version = "0.1", features = ["net"]}
tokio-rustls = { version = "0.23.4"}
tonic = {version = "0.9.2",features = [ "tls", "gzip", "tls-roots","tls-webpki-roots"]}
tower = { version = "0.4" }
tower-http = { version = "0.3.3", features = ["add-extension","auth","propagate-header","set-header","sensitive-headers","trace","compression-gzip"]}
tracing = {version = "0.1.34"}
tracing-subscriber = {version = "0.3.11", features = ["env-filter"]}
viam-mdns = "3.0.1"
webpki-roots = "0.21.1"
webrtc = { git = "https://github.com/webrtc-rs/webrtc.git", rev = "88dff7b1dd6880aaa3d3f60894f1be51169a2f9d" }
[dev-dependencies]
async-stream = "0.3.3"
env_logger = "0.9.0"
[build-dependencies]
tonic-build = {version = "0.9.2",features = ["prost"]}