-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 882 Bytes
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 882 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
34
35
36
37
38
[package]
name = "ferrisume-cli"
description = "A JSON resume CLI tool"
version = "0.5.2"
license = "MIT"
repository = "https://github.com/van-sprundel/ferrisume"
edition = "2021"
keywords = ["cli", "json", "resume"]
categories = ["visualization", "value-formatting"]
include = ["/src", "themes/default/**"]
[dependencies]
clap = { version = "4.5.12" }
log = "0.4.22"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.120"
env_logger = "0.11.4"
tiny_http = "0.12.0"
notify = "6.1.1"
handlebars = "6.0.0"
anyhow = "1.0"
thiserror = "1.0"
toml = "0.8.15"
headless_chrome = { version = "1.0.15", features = ["fetch"] }
tempfile = "3.12.0"
directories = "6.0.0"
lazy_static = "1.4.0"
comfy-table = "7.1.4"
[[bin]]
name = "ferrisume"
path = "src/main.rs"
# The profile that 'dist' will use to build the release
[profile.dist]
inherits = "release"
lto = "thin"