Cargo.toml 2.24 KB
Newer Older
1
2
3
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

Ryan Olson's avatar
Ryan Olson committed
4
[package]
Neelay Shah's avatar
Neelay Shah committed
5
name = "dynamo-runtime"
Alec's avatar
Alec committed
6
readme = "README.md"
7
8
9
10
11
12
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
13
description = "Dynamo Runtime Library"
Ryan Olson's avatar
Ryan Olson committed
14

15
16
17
[features]
default = []
integration = []
18
19
testing-etcd = [] # Tests that require an active ETCD server
tokio-console = ["dep:console-subscriber", "tokio/tracing"]
20

Ryan Olson's avatar
Ryan Olson committed
21
[dependencies]
22
23
24
25
26
27
# Use workspace dependencies where available
anyhow = { workspace = true }
async-nats = { workspace = true }
async-stream = { workspace = true }
async-trait = { workspace = true }
async_zmq = { workspace = true }
28
axum = { workspace = true }
29
30
31
32
33
34
blake3 = { workspace = true }
bytes = { workspace = true }
chrono = { workspace = true }
derive_builder = { workspace = true }
derive-getters = { workspace = true }
either = { workspace = true }
35
etcd-client = { workspace = true }
36
futures = { workspace = true }
37
humantime = { workspace = true }
38
prometheus = { workspace = true }
39
rand = { workspace = true }
40
41
42
43
44
45
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }
46
tracing-subscriber = { workspace = true }
47
thiserror = { workspace = true }
48
uuid = { workspace = true }
49
50
url = { workspace = true }
validator = { workspace = true }
51
xxhash-rust = { workspace = true }
Ryan Olson's avatar
Ryan Olson committed
52

53
arc-swap = { version = "1" }
54
async-once-cell = { version = "0.5.4" }
55
console-subscriber = { version = "0.4", optional = true }
56
educe = { version = "0.6.0" }
57
figment = { version = "0.10.19", features = ["env", "json", "toml", "test"] }
Ryan Olson's avatar
Ryan Olson committed
58
local-ip-address = { version = "0.6.3" }
59
log = { version = "0.4" }
Ryan Olson's avatar
Ryan Olson committed
60
61
62
nid = { version = "3.0.0", features = ["serde"] }
nix = { version = "0.29", features = ["signal"] }
nuid = { version = "0.5" }
63
64
65
once_cell = { version = "1" }
regex = { version = "1" }
socket2 = { version = "0.5.8" }
Ryan Olson's avatar
Ryan Olson committed
66
67

[dev-dependencies]
68
69
assert_matches = { version = "1.5.0" }
env_logger = { version = "0.11" }
70
reqwest = { workspace = true }
71
rstest = { version = "0.23.0" }
72
temp-env = { version = "0.3.6" , features=["async_closure"] }