Init quartz-enclave
This commit is contained in:
parent
f72250f6cf
commit
cb7f31c6b6
3 changed files with 33 additions and 0 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -1635,6 +1635,10 @@ dependencies = [
|
|||
"prost",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "quartz-enclave"
|
||||
version = "0.1.0"
|
||||
|
||||
[[package]]
|
||||
name = "quote"
|
||||
version = "1.0.35"
|
||||
|
|
8
utils/quartz-enclave/Cargo.toml
Normal file
8
utils/quartz-enclave/Cargo.toml
Normal file
|
@ -0,0 +1,8 @@
|
|||
[package]
|
||||
name = "quartz-enclave"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
21
utils/quartz-enclave/src/lib.rs
Normal file
21
utils/quartz-enclave/src/lib.rs
Normal file
|
@ -0,0 +1,21 @@
|
|||
#![warn(
|
||||
clippy::checked_conversions,
|
||||
clippy::panic,
|
||||
clippy::panic_in_result_fn,
|
||||
clippy::unwrap_used,
|
||||
rust_2018_idioms,
|
||||
unused_lifetimes
|
||||
)]
|
||||
#![deny(
|
||||
trivial_casts,
|
||||
trivial_numeric_casts,
|
||||
unused_import_braces,
|
||||
unused_qualifications,
|
||||
warnings
|
||||
)]
|
||||
#![forbid(unsafe_code)]
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
|
||||
}
|
Loading…
Reference in a new issue