feat: init commit

This commit is contained in:
2023-05-14 13:40:07 +08:00
parent 4e9771b210
commit a04164b6e2
4 changed files with 1156 additions and 4 deletions

4
.gitignore vendored
View File

@@ -32,10 +32,6 @@ Temporary Items
# will have compiled files and executables
debug/
target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

1144
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

9
Cargo.toml Normal file
View File

@@ -0,0 +1,9 @@
[package]
name = "yubikey-ca"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
yubikey = { version = "0.7", features = ["untested"] }

3
src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}