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