-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
36 lines (31 loc) · 919 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
34
35
36
[package]
authors = ["Christian Visintin <[email protected]>"]
categories = ["network-programming"]
description = "an ssh configuration parser for ssh2-rs"
documentation = "https://docs.rs/ssh2-config"
edition = "2021"
homepage = "https://veeso.github.io/ssh2-config/"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["ssh2", "ssh", "ssh-config", "ssh-config-parser"]
license = "MIT"
name = "ssh2-config"
readme = "README.md"
repository = "https://github.com/veeso/ssh2-config"
version = "0.3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitflags = "^2"
dirs = "^5"
thiserror = "^2"
wildmatch = "^2"
[dev-dependencies]
pretty_assertions = "^1"
rpassword = "^7"
ssh2 = "^0.9.0"
tempfile = "^3"
[[example]]
name = "client"
path = "examples/client.rs"
[[example]]
name = "query"
path = "examples/query.rs"