/ friend_tool / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "ghostline_friend_tool"
 3  version = "0.1.0"
 4  edition = "2021"
 5  
 6  [[bin]]
 7  name = "ghostline_decrypt"
 8  path = "src/main.rs"
 9  
10  [[bin]]
11  name = "ghostline_keygen"
12  path = "src/generate_keys.rs"
13  
14  [dependencies]
15  pqcrypto-kyber = "0.7"
16  pqcrypto-traits = "0.3"
17  hex = "0.4"
18  aes-gcm = { version = "0.10", features = ["std"] }
19  sha3 = "0.10"
20  zeroize = "1.7"