1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
[package]
name = "platforms"
description = """
Rust platform registry with information about valid Rust platforms (target
triple, target_arch, target_os) sourced from the Rust compiler.
"""
version = "3.7.0"
authors = ["Tony Arcieri <bascule@gmail.com>", "Sergey \"Shnatsel\" Davidoff <shnatsel@gmail.com>"]
license = "Apache-2.0 OR MIT"
homepage = "https://rustsec.org"
repository = "https://github.com/rustsec/rustsec"
readme = "README.md"
categories = ["development-tools", "no-std"]
keywords = ["architectures", "cpu", "os", "targets", "triples"]
edition = "2018"
exclude = ["README.header.md", "platform-support.md", "regenerate-platforms-crate.sh"]
[dependencies]
# Don't inherit from workspace, as the MSRV is 1.40.0
serde = { version = "1", optional = true }
[features]
default = ["std"]
std = []
|