sapling/eden/scm/lib/edenfs-client/Cargo.toml
Steven Troxler 3534ca3bb8 Deprecate rust-crypto in edenfs-client
Summary:
Switched out the `sha` package for the `rust-crypto` package. The
apis aren't an exact match, so I had to insert a clone in place of
a modification to a mutable reference.

Reviewed By: jsgf

Differential Revision: D20585336

fbshipit-source-id: 22245157aea1115ae6f225b17b0346f0696653f7
2020-03-23 11:04:36 -07:00

22 lines
469 B
TOML

[package]
name = "edenfs-client"
version = "0.1.0"
edition = "2018"
[dependencies]
anyhow = "1.0.25"
byteorder = "1.2"
chrono = "0.4"
clidispatch = { path = "../clidispatch" }
libc = "0.2"
sha2 = "0.8"
thrift-types = { path = "../thrift-types" }
tokio-core = "0.1"
tokio-uds = "0.1"
[target.'cfg(unix)'.dependencies]
fbthrift-socket = { path = "../../../../common/rust/thrift/socket" }
[dev-dependencies]
telemetry = { path = "../../../../scm/telemetry/telemetry" }