-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (32 loc) · 865 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
32
33
34
35
36
[package]
name = "nocode"
version = "0.1.0"
authors = ["lemonxah <[email protected]>"]
edition = "2018"
[dependencies]
jwt = "0.10.0"
rocket = "0.4.10"
rocket_codegen = "0.4.10"
rocket_contrib = { version = "0.4.10", default-features = false, features = ["json"] }
rocket_cors = "0.5.2"
serde = "1.0.123"
serde_json = "1.0.64"
serde_derive = "1.0.123"
tokio = { version = "1.2.0", features = ["full"] }
mongodb = { version = "1.2.0", default-features = false, features = ["sync"] }
bson = "1.2.0"
hmac = "0.8.1"
sha2 = "0.9.1"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
rust-crypto = "0.2.36"
handlebars = "4.0.0"
js-sandbox = "0.1.5"
d3ne = { version = "0.7.0" }
funlib = "0.1.7"
querylib = { version = "0.3.4", features = ["mongo", "parse"] }
anyhow = "1.0.40"
thiserror = "1.0.24"
regex = "1.5.4"
[[bin]]
name = "nocode"
path = "src/main.rs"