-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (37 loc) · 990 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
37
38
39
40
41
42
43
44
[package]
name = "example-rest-api"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
async-trait = "0.1.68"
chrono = { version = "0.4.24", features = ["serde"] }
redis = { version = "0.25.3", default-features = false, features = [
"tokio-rustls",
"tokio-comp",
"tls-rustls",
"tokio",
"tokio-rustls-comp",
] }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
thiserror = "1.0.60"
tokio = "1.28.1"
url = "2.3.1"
vercel_runtime = "1.1.1"
xid = "1.0.3"
[lib]
path = "lib/lib.rs"
[[bin]]
name = "api-collections"
path = "api/collections.rs"
[[bin]]
name = "api-collections-id"
path = "api/collections/[collectionid].rs"
[[bin]]
name = "api-collections-id-objects"
path = "api/collections/[collectionid]/objects.rs"
[[bin]]
name = "api-collections-id-objects-id"
path = "api/collections/[collectionid]/objects/[objectid].rs"