-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (25 loc) · 828 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
29
30
31
[package]
name = "juniper_rocket_multipart_handler"
version = "0.1.0"
description = "A juniper multipart handler for Rocket web server"
authors = ["Nelson Herbin <[email protected]>"]
edition = "2021"
license = "CC0-1.0"
repository = "https://github.com/Asone/juniper-rocket-multipart"
homepage = "https://github.com/Asone/juniper-rocket-multipart"
documentation = "https://github.com/Asone/juniper-rocket-multipart"
keywords = ["rocket", "juniper","multipart","form-data","upload"]
categories = ["filesystem"]
[dependencies]
multer = "2.0.2"
serde = "1.0.136"
serde_json = "1.0.68"
uuid = { version = "1.0.0", features = ["serde", "v4"] }
[dependencies.juniper]
version = "0.15.7"
[dependencies.juniper_rocket]
version = "0.8.2"
[dependencies.rocket]
version = "=0.5.0-rc.2"
[dependencies.tokio-util]
version = "0.7.1"