-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
42 lines (39 loc) · 1.07 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
[package]
name = "rust-log-analyzer"
version = "0.1.0"
authors = ["Rust Project Developers"]
license = "MIT"
edition = "2021"
[dependencies]
aho-corasick = "1.1"
atomicwrites = "0.4"
bincode = "1.0"
brotli = "3.3"
anyhow = { version = "1.0", features = ["backtrace"]}
futures = "0.3"
fnv = "1.0"
hex = "0.4"
hmac = "0.12"
hyper = { version = "0.14.25", features = ["http1", "server", "runtime"] }
lazy_static = "1.0"
regex = "1.7.1"
reqwest = { version = "0.11.14", features = ["json", "blocking"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
sha1 = "0.10"
walkdir = "2.1"
dotenv = "0.15"
crossbeam = "0.8"
percent-encoding = "2.1.0"
threadpool = "1.8.1"
tracing = "0.1.16"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
atty = "0.2.14"
clap = { version = "4.1.8", features = ["derive"] }
tokio = { version = "1.26.0", features = ["rt-multi-thread", "rt", "signal", "macros"] }
# aws release of https://github.com/awslabs/aws-sdk-rust/releases/tag/release-2023-10-26
aws-sdk-s3 = "0.34.0"
aws-config = "0.56.1"
[dev-dependencies]
pretty_assertions = "1.0"