Adding upstream version 0.5.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
6dc19540ee
commit
19551ac12c
23 changed files with 6571 additions and 0 deletions
59
Cargo.toml.orig
generated
Normal file
59
Cargo.toml.orig
generated
Normal file
|
@ -0,0 +1,59 @@
|
|||
[package]
|
||||
authors = ["Christian Visintin <christian.visintin@veeso.dev>"]
|
||||
categories = ["network-programming"]
|
||||
description = "an ssh configuration parser for ssh2-rs"
|
||||
documentation = "https://docs.rs/ssh2-config"
|
||||
edition = "2024"
|
||||
homepage = "https://veeso.github.io/ssh2-config/"
|
||||
include = [
|
||||
"build/**/*",
|
||||
"examples/**/*",
|
||||
"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.5.4"
|
||||
build = "build/main.rs"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
bitflags = "^2"
|
||||
dirs = "^6"
|
||||
log = "^0.4"
|
||||
glob = "0.3"
|
||||
thiserror = "^2"
|
||||
wildmatch = "^2"
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "^0.11"
|
||||
pretty_assertions = "^1"
|
||||
rpassword = "^7"
|
||||
ssh2 = "^0.9"
|
||||
tempfile = "^3"
|
||||
|
||||
[build-dependencies]
|
||||
anyhow = "1"
|
||||
git2 = "0.20"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
nolog = ["log/max_level_off"]
|
||||
|
||||
[[example]]
|
||||
name = "client"
|
||||
path = "examples/client.rs"
|
||||
|
||||
[[example]]
|
||||
name = "query"
|
||||
path = "examples/query.rs"
|
||||
|
||||
[[example]]
|
||||
name = "print"
|
||||
path = "examples/print.rs"
|
Loading…
Add table
Add a link
Reference in a new issue