-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 747 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 747 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
25
26
27
28
29
30
31
32
33
[package]
name = "ffcv"
version = "1.1.1"
edition = "2021"
authors = ["darkcodi <trooper982@gmail.com>"]
description = "Firefox Configuration Viewer - Parse and query Firefox preference files"
license = "MIT OR Apache-2.0"
repository = "https://github.com/darkcodi/ffcv"
keywords = ["firefox", "preferences", "config", "parser"]
categories = ["parser-implementations", "config"]
[lib]
name = "ffcv"
path = "src/lib.rs"
[[bin]]
name = "ffcv"
path = "src/main.rs"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
thiserror = "1.0"
configparser = "3.0"
cityhasher = "0.1"
glob = "0.3"
zip = "0.6"
tempfile = "3"
walkdir = "2"
[dev-dependencies]