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
102
Cargo.toml
Normal file
102
Cargo.toml
Normal file
|
@ -0,0 +1,102 @@
|
|||
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
||||
#
|
||||
# When uploading crates to the registry Cargo will automatically
|
||||
# "normalize" Cargo.toml files for maximal compatibility
|
||||
# with all versions of Cargo and also rewrite `path` dependencies
|
||||
# to registry (e.g., crates.io) dependencies.
|
||||
#
|
||||
# If you are reading this file be aware that the original Cargo.toml
|
||||
# will likely look very different (and much more reasonable).
|
||||
# See Cargo.toml.orig for the original contents.
|
||||
|
||||
[package]
|
||||
edition = "2024"
|
||||
name = "ssh2-config"
|
||||
version = "0.5.4"
|
||||
authors = ["Christian Visintin <christian.visintin@veeso.dev>"]
|
||||
build = "build/main.rs"
|
||||
include = [
|
||||
"build/**/*",
|
||||
"examples/**/*",
|
||||
"src/**/*",
|
||||
"LICENSE",
|
||||
"README.md",
|
||||
"CHANGELOG.md",
|
||||
]
|
||||
autolib = false
|
||||
autobins = false
|
||||
autoexamples = false
|
||||
autotests = false
|
||||
autobenches = false
|
||||
description = "an ssh configuration parser for ssh2-rs"
|
||||
homepage = "https://veeso.github.io/ssh2-config/"
|
||||
documentation = "https://docs.rs/ssh2-config"
|
||||
readme = "README.md"
|
||||
keywords = [
|
||||
"ssh2",
|
||||
"ssh",
|
||||
"ssh-config",
|
||||
"ssh-config-parser",
|
||||
]
|
||||
categories = ["network-programming"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/veeso/ssh2-config"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
nolog = ["log/max_level_off"]
|
||||
|
||||
[lib]
|
||||
name = "ssh2_config"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[[example]]
|
||||
name = "client"
|
||||
path = "examples/client.rs"
|
||||
|
||||
[[example]]
|
||||
name = "print"
|
||||
path = "examples/print.rs"
|
||||
|
||||
[[example]]
|
||||
name = "query"
|
||||
path = "examples/query.rs"
|
||||
|
||||
[dependencies.bitflags]
|
||||
version = "^2"
|
||||
|
||||
[dependencies.dirs]
|
||||
version = "^6"
|
||||
|
||||
[dependencies.glob]
|
||||
version = "0.3"
|
||||
|
||||
[dependencies.log]
|
||||
version = "^0.4"
|
||||
|
||||
[dependencies.thiserror]
|
||||
version = "^2"
|
||||
|
||||
[dependencies.wildmatch]
|
||||
version = "^2"
|
||||
|
||||
[dev-dependencies.env_logger]
|
||||
version = "^0.11"
|
||||
|
||||
[dev-dependencies.pretty_assertions]
|
||||
version = "^1"
|
||||
|
||||
[dev-dependencies.rpassword]
|
||||
version = "^7"
|
||||
|
||||
[dev-dependencies.ssh2]
|
||||
version = "^0.9"
|
||||
|
||||
[dev-dependencies.tempfile]
|
||||
version = "^3"
|
||||
|
||||
[build-dependencies.anyhow]
|
||||
version = "1"
|
||||
|
||||
[build-dependencies.git2]
|
||||
version = "0.20"
|
Loading…
Add table
Add a link
Reference in a new issue