-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
44 lines (41 loc) · 1.38 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
[package]
name = "sift_stream"
version = { workspace = true }
description = "A robust Sift telemetry streaming library"
edition = { workspace = true }
authors = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
categories = { workspace = true }
readme = "README.md"
[dependencies]
sift_connect = { workspace = true }
sift_error = { workspace = true }
sift_rs = { workspace = true }
tracing = { version = "0.1.41", optional = true }
bytesize = { version = "2", optional = true }
pbjson-types = { workspace = true }
tokio = { version = "1.43.0", features = ["rt", "sync", "time", "macros"] }
chrono = { workspace = true }
futures-core = "0.3.31"
tokio-stream = "0.1.17"
prost = "^0.13"
dirs = "6.0.0"
crc32fast = "1.4.2"
uuid = { version = "1.16.0", features = ["v4"] }
[features]
default = ["tracing"]
tracing = ["dep:tracing", "dep:bytesize"]
[dev-dependencies]
async-trait = "^0.1"
hyper-util = "0.1.10"
tempdir = "0.3.7"
tokio-stream = "0.1.17"
tonic = { workspace = true }
tower = { version = "0.5.2", features = ["util"] }
tracing-subscriber = { version = "0.3.20", features = ["fmt", "env-filter"] }
tokio = { version = "1.43.0", features = ["rt", "rt-multi-thread", "sync", "time"] }
uuid = { version = "1.16.0", features = ["v4"] }
tracing-test = { version = "0.2.5", features = ["no-env-filter"] }