-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (35 loc) · 1 KB
/
Cargo.toml
File metadata and controls
36 lines (35 loc) · 1 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
[package]
name = "speedy"
version = "0.1.0"
edition = "2021"
authors = ["Dusan Malusev <dusan@dusanmalusev.dev"]
[dependencies]
clap = { version = "4.4.7", features = ["derive", "env", "unicode", "string"] }
human-time = "0.1.6"
influxdb = { version = "0.7.1", features = ["derive", "use-serde", "reqwest-client"] }
lazy_static = "1.4.0"
nom = "7.1.3"
rand = { version = "0.8.5" }
serde = { version = "1.0.190", features = ["serde_derive"] }
serde_derive = "1.0.190"
serde_json = { version = "1.0.108", features = ["arbitrary_precision"] }
thiserror = "1.0.50"
time = { version = "0.3.30", features = ["serde", "formatting", "parsing", "macros", "rand", "local-offset"] }
tokio = { version = "1.33.0", features = [
"mio",
"bytes",
"fs",
"full",
"rt",
"socket2",
"time",
"tokio-macros",
"tracing",
"libc",
"signal",
"io-util",
"parking_lot",
"num_cpus",
"test-util",
] }
tokio-util = { version = "0.7.10", features = ["io", "rt", "time", "tracing", "net", "io-util"] }