~starkingdoms/starkingdoms

ref: aa29b1152569c25f6b685191e2956be1b38269c8 starkingdoms/crates/api/Cargo.toml -rw-r--r-- 828 bytes
aa29b115 — core more cleanup 8 months ago
                                                                                
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
[package]
name = "starkingdoms-api"
version = "0.1.0-alpha1"
authors = ["core <core@e3t.cc>"]
edition = "2021"
description = "The save storage API keeping your ship designs safe"
license = "AGPL-3"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
actix-web = "4"
actix-cors = "0.6"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
log = "0.4"
env_logger = "0.10"
diesel = { version = "2", features = ["serde_json"] }
diesel-async = { version = "0.4", features = ["postgres", "bb8", "async-connection-wrapper"] }
diesel_migrations = "2"
bb8 = "0.8"
rand = "0.8"
argon2 = "0.5"
password-hash = "0.5"
rs-snowflake = "0.6"
jwt = "0.16"
sha2 = "0.10"
hmac = "0.12"
hex = "0.4"
starkingdoms-common = { version = "0.1", path = "../common" }