-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
36 lines (32 loc) · 985 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "crt0stack"
version = "0.1.0"
authors = ["Harald Hoyer <[email protected]>", "Nathaniel McCallum <[email protected]>"]
edition = "2018"
rust-version = "1.56"
license = "Apache-2.0"
homepage = "https://github.com/enarx/crt0stack"
repository = "https://github.com/enarx/crt0stack"
description = "Tools for reading and creating Linux crt0 stack data"
readme = "README.md"
exclude = [ ".gitignore", ".github/*" ]
categories = [
"no-std",
]
keywords = [
"no_std",
"elf",
"stack",
"auxv",
"auxval"
]
[badges]
# See https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
github = { repository = "enarx/crt0stack", workflow = "test" }
#github = { repository = "enarx/crt0stack", workflow = "lint" }
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "enarx/crt0stack" }
is-it-maintained-open-issues = { repository = "enarx/crt0stack" }
[features]
default = ["std"]
std = []