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
|
2025-10-06 22:57:19 -04:00
|
|
|
base64.workspace = true
|
|
|
|
|
hex.workspace = true
|
2025-03-30 16:22:25 -04:00
|
|
|
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-10-26 15:43:51 -04:00
|
|
|
futures.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-11-13 16:08:58 +00:00
|
|
|
indexmap = { version = "2.0", features = ["serde"] }
|
2025-04-01 19:38:03 -04:00
|
|
|
|
|
|
|
|
# auth
|
|
|
|
|
libfj.workspace = true
|
2025-12-22 19:40:34 -05:00
|
|
|
jsonwebtoken = { version = "10", features = [ "rust_crypto" ] }
|
2025-04-01 19:38:03 -04:00
|
|
|
argon2 = { version = "0.5", features = [ "std" ] }
|
2026-07-05 15:45:36 -04:00
|
|
|
# federated auth
|
|
|
|
|
openidconnect.workspace = true
|
|
|
|
|
ring = "0.17"
|
|
|
|
|
urlencoding.workspace = true
|
2025-05-07 20:23:22 -04:00
|
|
|
|
2025-08-13 17:36:44 -04:00
|
|
|
# intercom
|
2026-05-04 21:53:29 -04:00
|
|
|
sha2 = "0.11"
|
2026-07-05 15:45:36 -04:00
|
|
|
reqwest = { version = "0.13", default-features = false, features = [ "rustls", "charset", "json", "form" ] }
|
2026-05-04 21:53:29 -04:00
|
|
|
reqwest-websocket = { version = "0.6", default-features = false, features = [ "json" ] }
|
2025-11-03 19:24:20 -05:00
|
|
|
oj_serdes.workspace = true
|
2025-08-13 17:36:44 -04:00
|
|
|
|
2025-06-14 17:57:34 -04:00
|
|
|
oj_rc_database = { version = "*", path = "../rc_database" }
|
|
|
|
|
oj_rc_factory = { version = "*", path = "../rc_factory" }
|