-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 1.06 KB
/
Copy pathCargo.toml
File metadata and controls
40 lines (35 loc) · 1.06 KB
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
[package]
name = "oneinstall"
version = "1.2.0"
edition = "2021"
authors = ["Logan Bek", "Antigravity <ai@antigravity>", "Claude Opus"]
description = "Unified cross-platform package manager - install anything with one command"
repository = "https://github.com/loganbek/1install"
license = "MIT"
keywords = ["package-manager", "cli", "cross-platform", "winget", "apt", "brew"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "1i"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "process", "time"] }
comfy-table = "7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
dirs = "5"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1"
sha2 = "0.10"
hex = "0.4"
reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false }
uuid = { version = "1", features = ["v4"] }
[features]
default = []
[profile.release]
lto = true
strip = true
codegen-units = 1
[dev-dependencies]
tempfile = "3"