-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
58 lines (53 loc) · 1.37 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "devicon-lookup"
description = "Prepend the correct devicon to the beginning of each filename"
version = "0.10.2"
authors = ["Corey Alexander <[email protected]>"]
repository = "https://github.com/coreyja/devicon-lookup"
license = "MIT"
edition = "2018"
[dependencies]
docopt = "1"
lazy_static = "1.4.0"
miette = { version = "7.1.0", features = ["fancy"] }
phf = { version = "0.11", features = ["macros"] }
regex = "1.9.3"
serde = "1.0"
serde_derive = "1.0"
thiserror = "1.0.57"
ansi_term = "0.12"
itertools = "0.12.0"
[dev-dependencies]
assert_cmd = "2.0.14"
colored = "2.0"
criterion = "0.5.1"
predicates = "3.0.3"
temp-dir = "0.1.12"
[[bench]]
name = "benchmark_cli"
harness = false
# generated by 'cargo dist init'
[profile.dist]
inherits = "release"
debug = true
split-debuginfo = "packed"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.8.1"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = ["shell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
]
# Publish jobs to run in CI
pr-run-mode = "plan"
# Where to host releases
hosting = ["axodotdev", "github"]