-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
28 lines (25 loc) · 964 Bytes
/
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
[package]
name = "tide-http-auth"
description = "Basic and Bearer auth support for Tide"
version = "0.5.1-alpha.0"
authors = ["Chris Dickinson <christopher.s.dickinson@gmail.com>"]
edition = "2018"
license = "Apache-2.0"
documentation = "https://docs.rs/tide-http-auth"
homepage = "https://github.com/chrisdickinson/tide-http-auth"
repository = "https://github.com/chrisdickinson/tide-http-auth"
keywords = ["auth", "tide", "authentication", "bearer", "basic"]
categories = ["asynchronous", "authentication"]
readme = "README.md"
[dependencies]
http-types = "2.7.0"
tide = { version = "0.16.0", default-features = false }
tracing = "0.1.21"
async-trait = "0.1.41"
base64 = "0.13.0"
[dev-dependencies]
async-std = { version = "1.6.5", features = ["attributes"] }
tide = { version = "0.16.0", default-features = true }
[[example]]
name = "basic"
path = "examples/basic-in-memory.rs"