-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This includes gravitational/rdp-rs#5 which will show a better error message for protocol negotiation failures. Also bump the libc dependency while we're at it. All other crates are still up to date.
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "rdp-client" | ||
version = "0.1.0" | ||
authors = ["Andrew Lytvynov <[email protected]>"] | ||
authors = ["Andrew Lytvynov <[email protected]>", "Zac Bergquist <[email protected]>"] | ||
edition = "2018" | ||
|
||
[lib] | ||
|
@@ -21,13 +21,13 @@ byteorder = "1.4.3" | |
env_logger = "0.9.0" | ||
iso7816 = "0.1.0-alpha.1" | ||
iso7816-tlv = "0.4.2" | ||
libc = "0.2.106" | ||
libc = "0.2.110" | ||
log = "0.4.14" | ||
num-derive = "0.3.3" | ||
num-traits = "0.2.14" | ||
# Ideally, we'd use RustCrypto/RSA instead of linking OpenSSL. Unfortunately, | ||
# RustCrypto doesn't expose the low-level primitives we need for the smartcard | ||
# challenge signing (see src/piv.rs for details). | ||
openssl = { version = "0.10.38", features = ["vendored"] } | ||
rdp-rs = { git = "https://github.com/gravitational/rdp-rs", rev = "755e950dcff0fc6965aa518c4596b995ede3417d" } | ||
rdp-rs = { git = "https://github.com/gravitational/rdp-rs", rev = "cb61119d2803f647b60e6c9b2ef05ab587cc1966" } | ||
uuid = { version = "0.8.2", features = ["v4"] } |