summaryrefslogtreecommitdiffstats
path: root/crates/common/tedge_utils/Cargo.toml
blob: 746ee890066ee7993bae200a88e7dd658d7c6a14 (plain)
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
[package]
name = "tedge_utils"
version = "0.6.2"
authors = ["thin-edge.io team <info@thin-edge.io>"]
edition = "2021"
rust-version = "1.58.1"
license = "Apache-2.0"
description = "tedge_utils provide utilities for thin-edge.io components"

[features]
# No features on by default
default = []
logging = ["tracing", "tracing-subscriber"]

[dependencies]
anyhow = "1.0"
futures = "0.3"
nix = "0.23.1"
tempfile = "3.2"
thiserror = "1.0"
tokio = { version = "1.12", default_features = false, features = [ "fs", "io-util", "macros", "signal"] }
tracing = { version = "0.1", features = [], optional = true }
tracing-subscriber = { version = "0.3", optional = true, features = [ "time" ] }
users = "0.11.0"

[dev-dependencies]
assert_matches = "1.5"
whoami = "1.2.1"