2025-03-30 16:22:25 -04:00
|
|
|
[package]
|
2025-06-03 21:09:03 -04:00
|
|
|
name = "oj_rc_core"
|
2025-04-02 20:59:52 -04:00
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
readme.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
authors.workspace = true
|
2025-03-30 16:22:25 -04:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
log.workspace = true
|
|
|
|
|
polariton.workspace = true
|
|
|
|
|
hex = "0.4"
|
|
|
|
|
serde.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
2025-06-03 21:09:03 -04:00
|
|
|
chrono.workspace = true
|
2025-03-30 16:22:25 -04:00
|
|
|
polariton_server.workspace = true
|
2025-04-01 19:38:03 -04:00
|
|
|
tokio = { version = "1.43", features = [ "net", "macros", "rt-multi-thread", "io-util", "time" ] }
|
2025-05-07 20:23:22 -04:00
|
|
|
async-trait.workspace = true
|
2025-06-03 21:09:03 -04:00
|
|
|
rand.workspace = true
|
2025-08-03 16:23:00 -04:00
|
|
|
num-quaternion.workspace = true
|
2025-04-01 19:38:03 -04:00
|
|
|
|
|
|
|
|
# auth
|
|
|
|
|
libfj.workspace = true
|
|
|
|
|
jsonwebtoken = "9"
|
|
|
|
|
argon2 = { version = "0.5", features = [ "std" ] }
|
2025-05-07 20:23:22 -04:00
|
|
|
|
2025-08-13 17:36:44 -04:00
|
|
|
# intercom
|
|
|
|
|
sha2 = "0.10"
|
|
|
|
|
reqwest = { version = "0.12", default-features = false, features = [ "rustls-tls", "charset" ] }
|
|
|
|
|
|
2025-06-14 17:57:34 -04:00
|
|
|
oj_rc_database = { version = "*", path = "../rc_database" }
|
|
|
|
|
oj_rc_factory = { version = "*", path = "../rc_factory" }
|