12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- [package]
- authors = ["Jorge Aparicio <japaricious@gmail.com>"]
- name = "compiler_builtins"
- version = "0.1.70"
- license = "MIT/Apache-2.0"
- readme = "README.md"
- repository = "https://github.com/rust-lang/compiler-builtins"
- homepage = "https://github.com/rust-lang/compiler-builtins"
- documentation = "https://docs.rs/compiler_builtins"
- description = """
- Compiler intrinsics used by the Rust compiler. Also available for other targets
- if necessary!
- """
- include = [
- '/Cargo.toml',
- '/build.rs',
- '/src/*',
- '/examples/*',
- '/LICENSE.txt',
- '/README.md',
- '/compiler-rt/*',
- '/libm/src/math/*',
- ]
- links = 'compiler-rt'
- [lib]
- test = false
- [dependencies]
- core = { version = "1.0.0", optional = true, package = 'rustc-std-workspace-core' }
- [build-dependencies]
- cc = { optional = true, version = "1.0" }
- [dev-dependencies]
- panic-handler = { path = 'crates/panic-handler' }
- [features]
- default = ["compiler-builtins"]
- c = ["cc"]
- no-asm = []
- compiler-builtins = []
- mem = []
- mangled-names = []
- no-lang-items = []
- rustc-dep-of-std = ['compiler-builtins', 'core']
- public-test-deps = []
- [[example]]
- name = "intrinsics"
- required-features = ["compiler-builtins"]
- [workspace]
- members = ["testcrate"]
- [profile.release]
- panic = 'abort'
- [profile.dev]
- panic = 'abort'
|