-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (29 loc) · 883 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "rust-metasploit"
version = "1.2.0"
authors = ["h4ck3r@parrot"]
edition = "2018"
license-file="LICENSE"
readme="README.md"
description="Rust wrapper for metasploit"
homepage="https://docs.rs/rust-metasploit/1.2.0/metasploit/"
repository="https://github.com/parrothacker1/rust-metasploit"
documentation="https://docs.rs/rust-metasploit/1.2.0/metasploit/"
keywords=["metasploit","hacking","msf","penetration"]
[dependencies]
reqwest={ version="0.11.18",features=["blocking","json"] }
rmp-serde="1.1.1"
rmpv={ version = "1.0.0" , features=["with-serde"] }
serde={ version="1.0.163" , features=["derive"] }
tokio={ version="1.28.1",optional=true }
doc-cfg = { version = "0.1" }
[lib]
name="metasploit"
[features]
default=["blocking"]
async=["tokio"]
blocking=[]
unstable-doc-cfg = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]