-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (26 loc) · 870 Bytes
/
Cargo.toml
File metadata and controls
34 lines (26 loc) · 870 Bytes
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
[package]
name = "ssh_format"
version = "0.14.1"
edition = "2018"
authors = ["Jiahao XU <Jiahao_XU@outlook.com>"]
license = "MIT"
description = "Data format used to communicate with openssh mux server."
repository = "https://github.com/openssh-rust/ssh_format"
keywords = ["serde", "ssh", "serialization", "parsing", "encoding"]
categories = ["encoding"]
[workspace]
members = ["ssh_format_error"]
[features]
is_human_readable = []
[dependencies]
serde = "1.0"
ssh_format_error = { version = "0.1", path = "ssh_format_error" }
bytes = { version = "1.2.1", optional = true }
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
assert_matches = "1.5.0"
generator = "0.7"
itertools = "0.14.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]