blob: f5ad82799c19dea677921817296399096e6e67cf (
plain)
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 = "no-std-test"
version = "0.0.1"
authors = ["iximeow <me@iximeow.net>"]
license = "0BSD"
description = "test crate to check that yaxpeax-arm is actually no-stds"
edition = "2021"
publish = false
[[bin]]
name = "no-std-test"
path = "src/main.rs"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[dependencies]
yaxpeax-arm = { path = "../..", default-features = false }
[workspace]
|