File: Cargo.toml.orig

package info (click to toggle)
rust-ssh2-config 0.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 404 kB
  • sloc: makefile: 2
file content (60 lines) | stat: -rw-r--r-- 1,225 bytes parent folder | download | duplicates (2)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[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"
rust-version = "1.88.0"
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.7.0"
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"