Signed-off-by: Jia Chao <jiac13@chinaunicom.cn>
This commit is contained in:
Jia Chao 2024-07-17 15:32:03 +08:00
commit 62f8f5c669
4 changed files with 48 additions and 0 deletions

25
.gitignore vendored Normal file
View File

@ -0,0 +1,25 @@
# Generated by Cargo
# 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
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# Added by cargo
/target
# ignore swp
**/*.swp
# ignore test data
test/

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "csaf-parser"
version = "0.1.0"
edition = "2021"
[dependencies]

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# csaf 解析
读取 csaf json 文件并将之转换为 `CSAF` 结构体。

14
src/lib.rs Normal file
View File

@ -0,0 +1,14 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}