mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-04 20:18:55 +01:00
27 lines
761 B
TOML
27 lines
761 B
TOML
[package]
|
|
name = "meilisearch-auth"
|
|
publish = false
|
|
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
homepage.workspace = true
|
|
readme.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
base64 = "0.21.0"
|
|
enum-iterator = "1.4.0"
|
|
hmac = "0.12.1"
|
|
maplit = "1.0.2"
|
|
meilisearch-types = { path = "../meilisearch-types" }
|
|
rand = "0.8.5"
|
|
roaring = { version = "0.10.1", features = ["serde"] }
|
|
serde = { version = "1.0.160", features = ["derive"] }
|
|
serde_json = { version = "1.0.95", features = ["preserve_order"] }
|
|
sha2 = "0.10.6"
|
|
thiserror = "1.0.40"
|
|
time = { version = "0.3.20", features = ["serde-well-known", "formatting", "parsing", "macros"] }
|
|
uuid = { version = "1.3.1", features = ["serde", "v4"] }
|