~starkingdoms/starkingdoms

ref: f8a7045d08bbed2a8f0b0d3c5e9291db0c09c355 starkingdoms/api/Cargo.toml -rw-r--r-- 1.2 KiB
f8a7045d — ghostlyzsh merged auth and entities, some planet stuff may be slightly broken 2 years 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
32
33
[package]
name = "starkingdoms-server-api"
version = "0.1.0"
edition = "2021"

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

[dependencies]
actix-web = "4"                 # Web framework
actix-request-identifier = "4"  # Web framework
actix-files = "0.6"             # Web framework

serde = { version = "1", features = ["derive"] }    # Serialization and deserialization

once_cell = "1" # Config
toml = "0.7"    # Config / Serialization and deserialization

log = "0.4"         # Logging
simple_logger = "4" # Logging

sea-orm = { version = "^0", features = [ "sqlx-postgres", "runtime-actix-rustls", "macros" ]}   # Database
starkingdoms_api_migration = { version = "0.1.0", path = "starkingdoms_api_migration" }                     # Database
starkingdoms_api_entities = { version = "0.1.0", path = "starkingdoms_api_entities" }                       # Database

ulid = "1.0.0"  # Identifiers

tera = "1"  # Templates

jwt = { version = "0.16", features = ["openssl"] }  # Auth
openssl = "0.10"                                    # Auth
reqwest = "0.11"                                    # Auth
hmac = "0.12.1"                                     # Auth
sha2 = "0.10.6"                                     # Auth