forked from njaremko/samael
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (40 loc) · 1.12 KB
/
Cargo.toml
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
[package]
authors = ["Nathan Jaremko <[email protected]>"]
build = "bindings.rs"
categories = ["authentication"]
description = "A SAML2 library for Rust"
edition = "2021"
keywords = ["saml", "saml2", "xml", "sso"]
license = "MIT"
name = "samael"
readme = "README.md"
repository = "https://github.com/BbartmanBI/samael_update"
version = "0.0.47"
[lib]
# Disabling doctests because they cause nix build check phase to fail
crate-type = ["staticlib", "rlib"]
doctest = false
# [features]
# xmlsec = ["libc", "lazy_static", "libxml"]
[build-dependencies]
bindgen = "^0.69.1"
pkg-config = "^0.3.17"
[dependencies]
base64 = "^0.22.0"
chrono = {version = "^0.4.0", features = ["serde"]}
data-encoding = "2.2.0"
derive_builder = "^0.20.0"
flate2 = "^1.0.0"
lazy_static = {version = "^1.4.0"}
libc = {version = "^0.2.66"}
libxml = {version = "^0.3.1"}
openssl = "^0.10.0"
openssl-probe = "^0.1.2"
openssl-sys = "^0.9.0"
quick-xml = {version = "^0.31.0", features = ["serialize"]}
rand = "^0.8.4"
serde = {version = "^1.0.0", features = ["derive"]}
thiserror = "^1.0.40"
url = "^2.1.1"
urlencoding = "2.1.3"
uuid = {version = "^1.3.0", features = ["v4"]}