-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
30 lines (26 loc) · 993 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
[package]
name = "xsave"
version = "2.0.2"
authors = ["Nathaniel McCallum <npmccallum@profian.com>"]
edition = "2021"
rust-version = "1.59"
license = "Apache-2.0"
homepage = "https://github.com/enarx/xsave"
repository = "https://github.com/enarx/xsave"
description = "An implementation of x86 XSave semantics"
readme = "README.md"
exclude = [ ".gitignore", ".github/*" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[badges]
# See https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
github = { repository = "enarx/xsave", workflow = "test" }
#github = { repository = "enarx/xsave", workflow = "lint" }
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "enarx/xsave" }
is-it-maintained-open-issues = { repository = "enarx/xsave" }
[dependencies]
const-default = { version = "^1.0.0", features = ["derive"] }
bitflags = "^1.3.2"
[features]
default = ["asm"]
asm = []