-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
67 lines (61 loc) · 1.62 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "eroteme"
version.workspace = true
authors.workspace = true
edition.workspace = true
description.workspace = true
readme.workspace = true
repository.workspace = true
license.workspace = true
exclude = ["./scripts"]
[workspace]
members = ["crates/handle-errors", "crates/mock-server"]
resolver = "2"
[workspace.package]
version = "1.0.0"
authors = ["Matt Cook <hello@mattcook.dev>"]
edition = "2021"
description = "Q&A API"
readme = "README.md"
repository = "https://github.com/sciencefidelity/eroteme"
license = "MIT or Apache-2.0"
[workspace.lints.clippy]
enum_glob_use = "deny"
pedantic = { level = "deny", priority = 1 }
nursery = { level = "deny", priority = 2 }
unwrap_used = "deny"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"
[dependencies]
chrono = "0.4"
clap = { version = "4", features = ["derive"] }
dotenv = "0.15"
futures-util = "0.3"
handle-errors = { path = "crates/handle-errors" }
mock-server = { path = "crates/mock-server" }
openssl = { version = "0.10.32", features = ["vendored"] }
paseto = "2"
rand = "0.8"
reqwest = { version = "0.12", features = ["json"] }
reqwest-middleware = "0.3"
reqwest-retry = "0.5"
rust-argon2 = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = { version = "0.7", features = [
"runtime-tokio",
"tls-rustls",
"migrate",
"postgres",
] }
tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "0.8", features = ["v4"] }
warp = "0.3"
[build-dependencies]
platforms = "2"