-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (40 loc) · 914 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
45
46
47
48
49
50
51
52
[package]
name = "recipemanagement"
version = "0.1.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
vergen = "6"
anyhow = "1.0"
[dependencies]
regex = "1"
diesel = { version = "2.1.4", features = ["sqlite"] }
dotenvy = "0.15"
itertools = "0.12.0"
axum = "0.6.1"
tokio = { version = "1", features = ["full"] }
askama = "0.12.1"
serde = { version = "1.0.60" }
argon2 = "0.5.2"
rand_core = { version = "0.6", features = ["std"] }
axum-sessions = "0.6.1"
log = "0.4"
env_logger = "0.10.1"
diesel_logger = "0.3.0"
hex = "0.4.3"
tantivy = "0.21.1"
futures = "0.3.25"
[dependencies.rand]
version = "0.8.5"
features = ["min_const_gen"]
[profile.dev.package.argon2]
opt-level=3
[[bin]]
name = "import"
path = "src/bin/main.rs"
[[bin]]
name = "server"
path = "src/bin/server.rs"
[lib]
path = "src/lib.rs"