-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
106 lines (100 loc) · 3.45 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[package]
name = "komac"
version = "2.7.0"
authors = ["Russell Banks"]
edition = "2021"
description = "A manifest creator for winget-pkgs"
license = "GPL-3.0-or-later"
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]
anstream = "0.6.18"
base16ct = { version = "0.2.0", features = ["std"] }
base64ct = { version = "1.6.0", features = ["std"] }
bit-set = "0.8.0"
bitflags = "2.6.0"
bon = "3.1.0"
byteorder = "1.5.0"
bzip2 = "0.4.4"
camino = { version = "1.1.9", features = ["serde1"] }
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.21", features = ["derive", "cargo", "env"] }
clap_complete = "4.5.38"
codepage = "0.1.2"
color-eyre = { version = "0.6.3", default-features = false }
const_format = "0.2.33"
crc32fast = "1.4.2"
crossterm = "0.28.1"
cynic = { version = "3.9.0", features = ["http-reqwest"] }
derive_more = { version = "1.0.0", features = ["as_ref", "deref", "deref_mut", "display", "from_str"] }
encoding_rs = "0.8.35"
flate2 = "1.0.35"
futures = "0.3.31"
futures-util = "0.3.31"
heapless = { version = "0.8.0", features = ["serde"] }
indexmap = "2.6.0"
indicatif = "0.17.9"
inquire = "0.7.5"
itertools = "0.13.0"
itoa = "1.0.14"
keyring = { version = "3.6.1", features = ["apple-native", "crypto-openssl", "sync-secret-service", "vendored", "windows-native"] }
liblzma = { version = "0.3.5", features = ["static"] }
memchr = "2.7.4"
memmap2 = "0.9.5"
msi = "0.8.0"
num_cpus = "1.16.0"
nutype = { version = "0.5.0", features = ["serde"] }
open = "5.3.1"
ordinal-trait = "0.1.0"
owo-colors = "4.1.0"
oxilangtag = { version = "0.1.5", features = ["serde"] }
package-family-name = { version = "2.0.1", features = ["serde"] }
percent-encoding = "2.3.1"
protobuf = "3.7.1"
pulldown-cmark = "0.12.2"
quick-xml = { version = "0.37.1", features = ["serialize"] }
rand = "0.8.5"
ratatui = "0.29.0"
reqwest = { version = "0.12.9", features = ["native-tls-vendored", "stream"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_with = { version = "3.11.0", default-features = false, features = ["macros"] }
serde_yaml = "0.9.34"
sha2 = "0.10.8"
strsim = "0.11.1"
strum = { version = "0.26.3", features = ["derive"] }
tempfile = "3.14.0"
thiserror = "2.0.3"
tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros", "fs"] }
tree-sitter-highlight = "0.24.4"
tree-sitter-yaml = "0.6.1"
tui-textarea = { version = "0.7.0", features = ["search"] }
url = { version = "2.5.3", features = ["serde"] }
uuid = { version = "1.11.0", features = ["v4"] }
versions = "6.3.2"
yara-x = { version = "0.10.0", default-features = false, features = ["pe-module"] }
zerocopy = { version = "0.8.11", features = ["derive"] }
zip = { version = "2.2.1", default-features = false, features = ["deflate"] }
[build-dependencies]
cynic-codegen = { version = "3.9.0", features = ["rkyv"] }
windows_exe_info = { version = "0.4.2", features = ["manifest"] }
[dev-dependencies]
indoc = "2.0.5"
rstest = "0.23.0"
sha1 = "0.10.6"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/komac", dest = "/usr/bin/komac", mode = "755" },
]