This commit updates the version of the `rustc-std-workspace-*` crates in-tree which are used in `[patch]`. This will guarantee that Cargo will select these versions even if minor updates are published to crates.io because otherwise a newer version on crates.io would be preferred which misses the point of `[patch]`!
15 lines
295 B
TOML
15 lines
295 B
TOML
[package]
|
|
name = "rustc-std-workspace-std"
|
|
version = "1.99.0"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
license = 'MIT OR Apache-2.0'
|
|
description = """
|
|
Hack for the compiler's own build system
|
|
"""
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
std = { path = "../../libstd" }
|