-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
81 lines (64 loc) · 1.45 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
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "tlms"
version = "0.9.0"
edition = "2021"
[features]
management = [
"dep:log",
"dep:pbkdf2",
"dep:rand",
"dep:regex",
"dep:utoipa"
]
locations = [
"reqwest",
"telegrams",
"grpc",
"dep:utoipa"
]
receivers = []
grpc = [
"dep:tonic",
"dep:prost",
]
telegrams = [
"grpc",
"locations",
"management",
"dep:log",
"dep:num-traits",
"dep:regex",
"dep:struct-field-names-as-array",
"dep:tonic",
"dep:prost",
"dep:utoipa"
]
measurements = [
"telegrams"
]
trekkie = [
"dep:utoipa"
]
statistics = [
"dep:utoipa"
]
[dependencies]
serde_json = "1.0"
serde = {version = "1.0", features = ["derive"]}
chrono = {version = "0.4", features = [ "serde" ]}
uuid = {version = "1.2", features = ["serde", "v4"]}
num-derive = {version = "0.3"}
diesel = { version = "2.0", features = ["postgres", "r2d2", "chrono", "uuid"]}
tonic = {version = "0.7", optional = true}
prost = {version = "0.10", optional = true}
struct-field-names-as-array = {version = "0.1", optional = true}
num-traits = {version = "0.2", optional = true}
pbkdf2 = {version = "0.11", optional = true}
rand = {version = "0.8", optional = true}
log = { version = "0.4", optional = true}
regex = {version = "1.7", optional = true}
reqwest = {version = "0.11", optional = true, features = ["blocking"]}
utoipa = {version = "3", optional = true}
securefmt = { version = "0.1" }
[build-dependencies]
tonic-build = "0.7"