-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (47 loc) · 1.48 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
[package]
name = "bybe"
version = "2.2.0"
authors = ["RakuJa"]
# Compiler info
edition = "2021"
rust-version = "1.75.0"
description = "Beyond Your Bestiary Explorer (BYBE) is a web service that provides tools to help Pathfinder 2e Game Masters."
readme = "README.md"
homepage = "https://backbybe.fly.dev/"
repository = "https://github.com/RakuJa/BYBE"
license = "MIT"
keywords = ["webservice", "pathfinder"]
publish = false
build = "build/main.rs"
[lints.rust]
unsafe_code = "forbid"
[dependencies]
actix-web = "4.9.0"
actix-cors = "0.7.0"
validator = {version="0.18.1", features = ["derive"]}
utoipa = { version = "5.0.0-beta.0", features = ["actix_extras"] }
utoipa-swagger-ui = { version = "7.1.1-beta.0", features = ["actix-web", "reqwest"] }
sqlx = { version = "0.8.2", features = ["runtime-async-std", "sqlite"] }
cached = { version = "0.53.1", features = ["async"] }
anyhow = "1.0.89"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
strum = {version="0.26.3", features = ["derive"]}
fastrand = "2.1.1"
counter = "0.6.0"
ordered-float = { version = "4", features = ["serde"]}
num-traits = "0.2.19"
maplit = "1.0.2"
itertools = "0.13.0"
regex = "1.10.6"
dotenvy = "0.15.7"
env_logger = "0.11.5"
log = "0.4.22"
once_cell = "1.19.0"
[build-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread", "rt"] }
anyhow = "1.0.89"
sqlx = {version = "0.8.2", features = ["runtime-async-std", "sqlite"]}
dotenvy = "0.15.7"
[dev-dependencies]
rstest = "0.22.0"