mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
27 lines
644 B
TOML
27 lines
644 B
TOML
[package]
|
|
name = "rc_core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
|
|
[dependencies]
|
|
log.workspace = true
|
|
polariton.workspace = true
|
|
hex = "0.4"
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
chrono = "0.4"
|
|
polariton_server.workspace = true
|
|
tokio = { version = "1.43", features = [ "net", "macros", "rt-multi-thread", "io-util", "time" ] }
|
|
async-trait.workspace = true
|
|
|
|
# auth
|
|
libfj.workspace = true
|
|
jsonwebtoken = "9"
|
|
argon2 = { version = "0.5", features = [ "std" ] }
|
|
|
|
rc_database = { version = "0.2", path = "../rc_database" }
|