mirror of
https://github.com/rust-lang/cargo
synced 2024-10-30 22:57:17 +00:00
c6c1df4758
We likely don't want to release these packages every 6 months just for an MSRV bump. By moving the MSRV out of the package, `cargo bump-check` will ignore the MSRV bump. Inspired by #13266
26 lines
681 B
TOML
26 lines
681 B
TOML
[package]
|
|
name = "cargo-credential"
|
|
version = "0.4.4"
|
|
rust-version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "A library to assist writing Cargo credential helpers."
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
libc.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
time.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-sys = { workspace = true, features = ["Win32_System_Console", "Win32_Foundation"] }
|
|
|
|
[dev-dependencies]
|
|
snapbox = { workspace = true, features = ["examples"] }
|
|
|
|
[lints]
|
|
workspace = true
|