sapling/eden/scm/lib/auth/Cargo.toml
Arun Kulshreshtha a8a9fa3246 auth: add x509 module for validating certs
Summary: Add a new module that can parse X.509 certificates and detect common issues (e.g., the certificate is missing, corrupt, or expired). This should allow us to provide better UX around certificate errors.

Reviewed By: sfilipco

Differential Revision: D25440548

fbshipit-source-id: b7785fd17fa85f812fd38de09e79420f4e256065
2020-12-11 18:55:03 -08:00

21 lines
461 B
TOML

# @generated by autocargo from //eden/scm/lib/auth:auth
[package]
name = "auth"
edition = "2018"
version = "0.1.0"
include = ["src/**/*.rs"]
[dependencies]
configparser = { path = "../configparser" }
util = { path = "../util" }
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
indexmap = { version = "1.3", features = ["serde-1", "rayon"] }
pem = "0.8"
simple_asn1 = "0.4"
thiserror = "1.0"
url = "2.1.0"
[dev-dependencies]
once_cell = "1.4"