-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 766 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 766 Bytes
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
[package]
name = "meilisearch-ex"
version = "0.1.0"
edition = "2021"
authors = ["Eugene Korir <korir16071@gmail.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-cors = "0.7.0"
actix-web = "4.4.0"
async-graphql = "6.0.11"
async-graphql-actix-web = "7.0.11"
diesel = { version = "2.1.4", features = ["postgres"] }
diesel-async = { version = "0.5.0", features = ["postgres", "deadpool"] }
diesel_migrations = "2.1.0"
dotenvy = "0.15.7"
env_logger = "0.11.3"
envy = "0.4.2"
futures = "0.3.29"
log = "0.4.20"
meilisearch-sdk = "0.24.3"
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
thiserror = "1.0.51"
validator = { version = "0.18.1", features = ["derive"] }