-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (34 loc) · 740 Bytes
/
Cargo.toml
File metadata and controls
44 lines (34 loc) · 740 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "grip_api"
version = "0.3.3"
authors = ["Mingwei Zhang <mingwei@mwzhang.com>"]
edition = "2021"
[[bin]]
name = "grip-api"
path = "src/bin/api.rs"
[[bin]]
name = "grip-cli"
path = "src/bin/cli.rs"
[dependencies]
# general
regex = "1"
# webframework
rocket = {version="0.5.0-rc.1", features=["json"]}
reqwest = "0.9.19"
# elasticsearch
elastic = "0.21.0-pre.5"
elastic_derive = "0.21.0-pre.5"
# serialization
serde = {version="1.0", features=["derive"]}
serde_json = "1.0"
serde_derive = "1.0"
# configuration
toml = "0.4"
clap = {version="3.0.0-beta.5", features = [ "derive" ]}
chrono = "0.4.11"
lazy_static = "1.4.0"
# authentication
# jsonwebtoken = "7.2.0"
# auth0_rs = "0.2.0"
# mail
# lettre = "0.10.0-rc.3"