๐Ÿ“ฆ rust-lang / rust

๐Ÿ“„ Cargo.toml ยท 18 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18[package]
name = "rustc-std-workspace-std"
version = "1.99.0"
license = 'MIT OR Apache-2.0'
description = """
Hack for the compiler's own build system
"""
edition = "2024"

[lib]
path = "lib.rs"
test = false
bench = false
doc = false

[dependencies]
std = { path = "../std" }