-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (47 loc) · 1.4 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (47 loc) · 1.4 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 = "componentize-go"
authors = ["Andrew Steurer <me@asteurer.com>"]
version = { workspace = true }
edition = { workspace = true }
[lib]
name = "componentize_go"
crate-type = ["cdylib", "rlib"]
[workspace]
members = ["./tests"]
[workspace.dependencies]
anyhow = "1.0.103"
bzip2 = "0.6.1"
once_cell = "1.21.3"
reqwest = { version = "0.13.4", features = ["blocking"] }
tar = "0.4.46"
[workspace.package]
version = "0.4.3"
edition = "2024"
[workspace.lints.clippy]
# The default set of lints in Clippy is viewed as "too noisy" right now so
# they're all turned off by default. Selective lints are then enabled below as
# necessary.
all = { level = 'allow', priority = -1 }
clone_on_copy = 'warn'
map_clone = 'warn'
unnecessary_to_owned = 'warn'
manual_strip = 'warn'
uninlined_format_args = 'warn'
unnecessary_mut_passed = 'warn'
unnecessary_fallible_conversions = 'warn'
unnecessary_cast = 'warn'
allow_attributes_without_reason = 'warn'
[dependencies]
anyhow = { workspace = true }
bzip2 = { workspace = true }
reqwest = { workspace = true }
tar = { workspace = true }
clap = { version = "4.6.1", features = ["derive"] }
regex = "1.12.4"
serde = { version = "1.0.228", features = ["derive"] }
toml = "1.1.0"
wit-bindgen-go = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "4f9a02d74cec9257c14ba9b160fa787a3523fd0b" }
wit-component = "0.258.0"
wit-parser = "0.258.0"
which = "8.0.4"
dirs = "6.0.0"