-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 1.65 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (43 loc) · 1.65 KB
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
45
46
47
[package]
name = "frontegg"
authors = ["Materialize, Inc."]
readme = "README.md"
description = "An async API client for the Frontegg user management service."
documentation = "https://docs.rs/frontegg"
license = "Apache-2.0"
categories = ["api-bindings", "web-programming"]
keywords = ["frontegg", "front", "egg", "api", "sdk"]
repository = "https://github.com/MaterializeInc/rust-frontegg"
version = "0.9.0"
rust-version = "1.88.0"
edition = "2021"
[dependencies]
async-stream = "0.3.6"
futures-core = "0.3.31"
once_cell = "1.20.3"
reqwest = { version = "0.13.1", default-features = false, features = ["json", "charset", "http2", "system-proxy"] }
reqwest-middleware = { version = "0.5", features = ["query"] }
reqwest-retry = "0.9"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
time = { version = "0.3.37", features = ["serde", "serde-human-readable"] }
tokio = { version = "1.38.1" }
uuid = { version = "1.13.1", features = ["serde", "v4"] }
# Selects reqwest's TLS backend. The default rustls-tls links no system OpenSSL
# (aws-lc-rs provider), which keeps static musl builds simple; native-tls is
# available for consumers that prefer the system TLS stack.
[features]
default = ["rustls-tls"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls"]
[dev-dependencies]
futures = "0.3.31"
test-log = { version = "0.2.14", default-features = false, features = ["trace"] }
tokio = { version = "1.38.1", features = ["macros"] }
tokio-stream = "0.1.15"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
wiremock = "0.6.2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]