-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathCargo.toml
41 lines (35 loc) · 1.04 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
[package]
name = "tokenserver-auth"
version.workspace = true
license.workspace = true
authors.workspace = true
edition.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures.workspace = true
serde.workspace = true
serde_json.workspace = true
hex.workspace = true
hkdf.workspace = true
hmac.workspace = true
jsonwebtoken.workspace = true
base64.workspace = true
sha2.workspace = true
thiserror.workspace = true
slog-scope.workspace = true
async-trait = "0.1.40"
dyn-clone = "1.0.4"
reqwest = { workspace = true, features = ["json"] }
ring = "0.17"
syncserver-common = { path = "../syncserver-common" }
tokenserver-common = { path = "../tokenserver-common" }
tokenserver-settings = { path = "../tokenserver-settings" }
tokio = { workspace = true }
pyo3 = { version = "0.22", features = ["auto-initialize"], optional = true }
[dev-dependencies]
# mockito = "0.30"
mockito = "1.4.0"
tokio = { workspace = true, features = ["macros"] }
[features]
default = ["py"]
py = ["pyo3"]