-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (47 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
53 lines (47 loc) · 1.19 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
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "opensass"
version = "0.0.6"
edition = "2024"
description = """
🧩 A CLI to interact with the OpenSASS ecosystem.
"""
authors = ["Mahmoud Harmouch <oss@wiseai.dev>"]
license = "MIT"
documentation = "https://docs.rs/opensass"
repository = "https://github.com/opensass/cli"
readme = "README.md"
categories = ["wasm", "command-line-utilities", "development-tools::build-utils"]
keywords = ["wasm", "rust", "cli", "components", "frontend"]
exclude = ["/assets"]
[[bin]]
name = "os"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.98"
clap = { version = "4.5.48", features = ["derive"] }
crates_io_api = "0.11.0"
flate2 = "1.1.1"
indicatif = "0.17.11"
reqwest = { version = "0.12.19", features = ["blocking", "rustls-tls"] }
tar = "0.4.44"
tempfile = "3.20.0"
tokio = { version = "1.45.1", features = ["full"] }
toml_edit = "0.22.26"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
walkdir = "2.5.0"
[features]
default = []
[profile.release]
opt-level = "z"
debug = false
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "symbols"
incremental = false
[badges]
maintenance = { status = "actively-developed" }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]