forked from russellbanks/Komac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
90 lines (84 loc) · 2.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "komac"
version = "2.3.0"
authors = ["Russell Banks"]
edition = "2021"
description = "A manifest creator for winget-pkgs"
license = "GPL-3.0"
repository = "https://github.com/russellbanks/Komac"
readme = "README.md"
documentation = "https://github.com/russellbanks/Komac/blob/main/README.md"
categories = ["command-line-utilities", "development-tools"]
keywords = ["winget", "winget-pkgs", "winget-cli", "windows"]
build = "build.rs"
include = ["**/*.rs", "assets/github.graphql", "assets/logo.ico"]
[[bin]]
name = "komac"
path = "src/main.rs"
[profile.release]
codegen-units = 1
lto = true
strip = true
[dependencies]
base16ct = { version = "0.2.0", features = ["std"] }
base64ct = { version = "1.6.0", features = ["std"] }
bitflags = "2.5.0"
camino = { version = "1.1.7", features = ["serde1"] }
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.4", features = ["derive", "cargo", "env"] }
color-eyre = { version = "0.6.3", default-features = false }
const_format = "0.2.32"
crossterm = "0.27.0"
cynic = { version = "3.7.1", features = ["http-reqwest"] }
derive_more = "0.99.17"
futures = "0.3.30"
futures-util = "0.3.30"
heapless = "0.8.0"
indexmap = "2.2.6"
indicatif = "0.17.8"
inquire = "0.7.5"
itertools = "0.12.1"
keyring = "2.3.3"
memmap2 = "0.9.4"
msi = "0.7.0"
num_cpus = "1.16.0"
nutype = { version = "0.4.2", features = ["serde"] }
once_cell = "1.19.0"
open = "5.1.2"
ordinal = "0.3.2"
oxilangtag = { version = "0.1.5", features = ["serde"] }
package-family-name = "1.1.0"
percent-encoding = "2.3.1"
pulldown-cmark = "0.11.0"
quick-xml = { version = "0.31.0", features = ["serialize"] }
rand = "0.8.5"
ratatui = "0.26.2"
reqwest = { version = "0.12.4", features = ["native-tls-vendored", "stream"] }
serde = { version = "1.0.201", features = ["derive"] }
serde_json = "1.0.117"
serde_with = { version = "3.8.1", default-features = false, features = ["macros"] }
serde_yaml = "0.9.34"
sha2 = "0.10.8"
strum = { version = "0.26.2", features = ["derive"] }
tempfile = "3.10.1"
thiserror = "1.0.60"
tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros", "fs"] }
tree-sitter-highlight = "0.22.6"
tree-sitter-yaml = "0.6.1"
tui-textarea = { version = "0.4.0", features = ["search"] }
url = { version = "2.5.0", features = ["serde"] }
uuid = { version = "1.8.0", features = ["v4"] }
versions = "6.2.0"
yara-x = { version = "0.3.0", default-features = false, features = ["pe-module"] }
zip = { version = "1.2.3", default-features = false, features = ["deflate"] }
[build-dependencies]
cynic-codegen = { version = "3.7.1", features = ["rkyv"] }
windows_exe_info = { version = "0.4.2", features = ["manifest"] }
[dev-dependencies]
indoc = "2.0.5"
rstest = "0.19.0"
sha1 = "0.10.6"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/komac", dest = "/usr/bin/komac", mode = "755" },
]