-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (34 loc) · 1.07 KB
/
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
# Cargo.toml
[package]
name = "voskhod"
version = "0.1.0"
authors = ["Alexey Zabelin <[email protected]>"]
# This creates an executable that can be targeted with `cargo run` and `cargo build`
# For this project, there will be two `[[bin]]` sections later on.
# More information is available at https://doc.rust-lang.org/cargo/reference/manifest.html#configuring-a-target
[[bin]]
name = "voskhod"
path = "src/bin/main.rs"
[[bin]]
name = "seed"
path = "src/bin/seed.rs"
# Name of the library that will be generated.
[lib]
name = "voskhod_lib"
path = "src/lib.rs"
# Dependencies added with `cargo add` and edited to enable additional features.
[dependencies]
rocket = "0.3.16"
rocket_codegen = "0.3.16"
rocket_contrib = { version = "0.3.16", default-features = false, features = ["tera_templates"] }
serde = "1.0.76"
serde_derive = "1.0.76"
serde_json = "1.0.26"
tera = "0.11.14"
diesel = { version = "1.3.2", features = ["postgres", "chrono"] }
r2d2 = "0.8.2"
r2d2-diesel = "1.0.0"
dotenv = "0.13.0"
chrono = { version = "0.4.6", features = ["serde"] }
fake = "1.2.2"
rand = "0.5.5"