-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 722 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "elb-log-parser"
version = "0.2.7"
edition = "2024"
authors = ["Jihyeon Kim <simnalamburt@gmail.com>"]
description = "Simple AWS ELB log parser which parses Classic LB and ALB logs into JSONs."
license = "AGPL-3.0-or-later"
repository = "https://github.com/simnalamburt/elb-log-parser"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
regex-automata = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
walkdir = "2"
flate2 = "1"
anyhow = { version = "1", features = ["backtrace"] }
thiserror = "2"
clap = { version = "4.0.22", features = ["derive"] }
clap_complete = "4.5.33"
crossbeam-channel = "0.5.15"