-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 1.25 KB
/
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
# This file is part of intel-xsave. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/intel-xsave/master/COPYRIGHT. No part of intel-xsave, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
# Copyright © 2019 The developers of intel-xsave. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/intel-xsave/master/COPYRIGHT.
[package]
name = "x86_64-xsave"
description = "x86_64-xsave"
keywords = ["intel", "x86-64", "x86_64", "xsave", "cpu"]
categories = ["hardware-support"]
license = "MIT"
authors = ["Raphael Cohn <[email protected]>"]
homepage = "https://github.com/lemonrock/intel-xsave"
repository = "https://github.com/lemonrock/intel-xsave.git"
exclude = ["*"]
include = ["README.md", "LICENSE", "COPYRIGHT", "src/**/*.rs", "Cargo.toml", "rustfmt.toml", "clippy.toml"]
readme = "README.md"
publish = true
edition = '2018'
version = "0.1.3"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
[dependencies]
arrayref = "^0.3.5"