-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (47 loc) · 1.7 KB
/
Cargo.toml
File metadata and controls
51 lines (47 loc) · 1.7 KB
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
[workspace]
members = [".", "./utils/dummy-data-loader"]
[package]
name = "api"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/beat-forge/api"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
debug = []
[dependencies]
# actix-cors = "0.6.4"
# actix-web = "4.4.0"
# actix-web-lab = "0.20.1"
chrono = { version = "0.4.31", features = ["serde"] }
# sea-orm = { version = "0.12", features = ["sqlx-postgres", "runtime-actix-rustls"] }
uuid = { version = "1.6", features = ["serde", "v4"] }
# entity = { path = "./entity" }
dotenv = "0.15.0"
futures = "0.3.29"
serde = { version = "1.0.192", features = ["derive"] }
bitflags = "2.4.1"
cached = "0.47"
jsonwebtoken = "9.1.0"
rand = "0.8.5"
minreq = { version = "2.11.0", features = ["serde_json", "json-using-serde", "https-rustls"] }
serde_json = "1.0.108"
lazy_static = "1.4.0"
forge-lib = { git = "https://github.com/beat-forge/lib", version = "1.0.0" }
# migration = { path = "./migration" }
semver = "1.0.20"
once_cell = "1.18.0"
meilisearch-sdk = "0.24.3"
# meilisearch-entity = { path = "./meilisearch-entity" }
tap = "1.0.1"
async-graphql = { version = "7", features = ["uuid", "chrono", "playground", "tracing"] }
tracing = "0.1.40"
tracing-log = "0.2.0"
# async-graphql-actix-web = "6.0.11"
tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter", "fmt", "tracing-log"] }
poem = { version = "2", features = ["test"] }
async-graphql-poem = "7"
tokio = { version = "1.35.0", features = ["macros", "rt-multi-thread"] }
sqlx = { version = "0.7.3", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono"] }
anyhow = "1.0.75"
futures-util = "0.3.29"
text-to-ascii-art = "0.1.9"