-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (66 loc) · 1.93 KB
/
Cargo.toml
File metadata and controls
71 lines (66 loc) · 1.93 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
68
69
70
71
[package]
name = "omicron-common"
version = "0.1.0"
edition.workspace = true
license = "MPL-2.0"
[lints]
workspace = true
# NOTE:
#
# This crate is depended on by several other workspaces! Be careful of adding
# new regular or build dependencies here, as they will be added to those crates
# as well. (Dev-dependencies are fine.)
[dependencies]
anyhow.workspace = true
api_identity.workspace = true
async-trait.workspace = true
backoff.workspace = true
camino.workspace = true
chrono.workspace = true
daft.workspace = true
dropshot.workspace = true
futures.workspace = true
hex.workspace = true
http.workspace = true
iddqd.workspace = true
ipnetwork.workspace = true
itertools.workspace = true
lldp_protocol.workspace = true
macaddr.workspace = true
mg-admin-client.workspace = true
omicron-uuid-kinds.workspace = true
oxnet.workspace = true
proptest = { workspace = true, optional = true }
rand.workspace = true
reqwest = { workspace = true, features = ["rustls-tls", "stream"] }
schemars = { workspace = true, features = ["chrono", "semver", "uuid1"] }
semver.workspace = true
serde.workspace = true
serde_human_bytes.workspace = true
serde_json.workspace = true
serde_with.workspace = true
slog.workspace = true
slog-error-chain.workspace = true
static_assertions.workspace = true
strum.workspace = true
test-strategy = { workspace = true, optional = true }
thiserror.workspace = true
tokio = { workspace = true, features = ["full"] }
uuid.workspace = true
parse-display.workspace = true
progenitor-client.workspace = true
omicron-workspace-hack.workspace = true
regress.workspace = true
tufaceous-artifact.workspace = true
[dev-dependencies]
camino-tempfile.workspace = true
expectorate.workspace = true
libc.workspace = true
proptest.workspace = true
regress.workspace = true
serde_urlencoded.workspace = true
test-strategy.workspace = true
tokio = { workspace = true, features = ["test-util"] }
toml.workspace = true
[features]
testing = ["proptest", "test-strategy"]