The openssl crate is affected by several CVEs. While looking into bumping it I realized that we could just bump reqwest, which doesn't use it as default TLS provider anymore. So this adds rustls and all its dependencies to the dependency tree.
22 lines
537 B
TOML
22 lines
537 B
TOML
[package]
|
|
name = "xtask"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[features]
|
|
default = ["dep:semver", "dep:toml_edit"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.1.8", features = ["derive"] }
|
|
html5gum = "0.8.0"
|
|
reqwest = { version = "0.13", features = ["blocking", "json"] }
|
|
semver = { version = "1.0.6", features = ["serde"], optional = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
toml_edit = { version = "0.25.8", optional = true }
|
|
xshell = "0.2.7"
|
|
|
|
[lints]
|
|
workspace = true
|