-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
55 lines (51 loc) · 1.47 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
[package]
name = "wasi-wheels"
version = "0.1.0"
edition = "2021"
description = "Compile Python wheels for use with WASI targets."
repository = "https://github.com/benbrandt/wasi-wheels"
license = "Apache-2.0"
[dependencies]
anyhow = "1.0.95"
bytes = "1.10.0"
clap = { version = "4.5.28", features = ["derive"] }
flate2 = "1.0.35"
futures-util = "0.3.31"
heck = "0.5.0"
hex = "0.4.3"
itertools = "0.14.0"
octocrab = { version = "0.43.0", features = ["stream"] }
reqwest = { version = "0.12.12", features = [
"rustls-tls",
"json",
"gzip",
"brotli",
"zstd",
"deflate",
"hickory-dns",
] }
rinja = "0.3.5"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
sha2 = "0.10.8"
strum = { version = "0.26.3", features = ["derive"] }
tar = "0.4.43"
tempfile = "3.16.0"
tokio = { version = "1.43.0", features = ["full"] }
url = "2.5.4"
[lints.rust]
future_incompatible = { level = "warn", priority = -1 }
missing_debug_implementations = "warn"
missing_docs = "warn"
nonstandard_style = { level = "warn", priority = -1 }
rust_2018_compatibility = { level = "warn", priority = -1 }
rust_2018_idioms = { level = "warn", priority = -1 }
rust_2021_compatibility = { level = "warn", priority = -1 }
rust_2024_compatibility = { level = "warn", priority = -1 }
unused = { level = "warn", priority = -1 }
tail-expr-drop-order = "allow"
[lints.clippy]
pedantic = "warn"
[dev-dependencies]
assert_cmd = "2.0.16"
tokio = { version = "1.43.0", features = ["test-util"] }