1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2021" 14name = "compiler_builtins" 15version = "0.1.133" 16authors = ["Jorge Aparicio <japaricious@gmail.com>"] 17build = "build.rs" 18links = "compiler-rt" 19include = [ 20 "/Cargo.toml", 21 "/build.rs", 22 "/configure.rs", 23 "/src/*", 24 "/examples/*", 25 "/LICENSE.txt", 26 "/README.md", 27 "/compiler-rt/*", 28 "/libm/src/math/*", 29] 30autolib = false 31autobins = false 32autoexamples = false 33autotests = false 34autobenches = false 35description = """ 36Compiler intrinsics used by the Rust compiler. Also available for other targets 37if necessary! 38""" 39homepage = "https://github.com/rust-lang/compiler-builtins" 40documentation = "https://docs.rs/compiler_builtins" 41readme = "README.md" 42license = "MIT/Apache-2.0" 43repository = "https://github.com/rust-lang/compiler-builtins" 44 45[profile.dev] 46panic = "abort" 47 48[profile.release] 49panic = "abort" 50 51[lib] 52name = "compiler_builtins" 53path = "src/lib.rs" 54test = false 55 56[[example]] 57name = "intrinsics" 58path = "examples/intrinsics.rs" 59required-features = ["compiler-builtins"] 60 61[dependencies.core] 62version = "1.0.0" 63optional = true 64package = "rustc-std-workspace-core" 65 66[dev-dependencies] 67 68[build-dependencies.cc] 69version = "1.0" 70optional = true 71 72[features] 73c = ["cc"] 74compiler-builtins = [] 75default = ["compiler-builtins"] 76mangled-names = [] 77mem = [] 78no-asm = [] 79no-f16-f128 = [] 80public-test-deps = [] 81rustc-dep-of-std = [ 82 "compiler-builtins", 83 "core", 84] 85