Init quartz-enclave

This commit is contained in:
hu55a1n1 2024-02-19 11:13:34 -08:00
parent f72250f6cf
commit cb7f31c6b6
3 changed files with 33 additions and 0 deletions

4
Cargo.lock generated
View file

@ -1635,6 +1635,10 @@ dependencies = [
"prost", "prost",
] ]
[[package]]
name = "quartz-enclave"
version = "0.1.0"
[[package]] [[package]]
name = "quote" name = "quote"
version = "1.0.35" version = "1.0.35"

View 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]

View 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 {
}