-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 863 Bytes
/
Cargo.toml
File metadata and controls
35 lines (33 loc) · 863 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
[package]
name = "crgx"
version = "0.1.0"
edition = "2024"
description = "Run any crate binary instantly — fetch, cache, and execute without cargo install"
license = "MIT"
repository = "https://github.com/yfedoseev/crgx"
homepage = "https://crgx.dev"
documentation = "https://crgx.dev/docs"
readme = "README.md"
keywords = ["cargo", "binary", "runner", "npx", "cli"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
clap = { version = "4", features = ["derive"] }
ureq = { version = "3", default-features = false, features = ["rustls", "json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1.0"
flate2 = "1"
tar = "0.4"
zip = "8"
xz2 = "0.1"
thiserror = "2"
anyhow = "1"
dirs = "6"
semver = "1"
url = "2"
tempfile = "3"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
mockito = "1"
tempfile = "3"