[package]
edition = "2024"
name = "xapi-rs"
version = "0.1.20"
authors = ["Raif S. Naffah <raif@mailbox.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A conformant LRS implementation of xAPI 2.0.0"
readme = "README.md"
keywords = [
"xAPI",
"LRS",
"web",
"server",
]
categories = [
"web-programming::http-server",
"data-structures",
"api-bindings",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/raif-s-naffah/xapi-rs"
[lib]
name = "xapi_rs"
path = "src/lib.rs"
[[bin]]
name = "xapi-rs"
path = "src/main.rs"
[[test]]
name = "about"
path = "tests/about.rs"
[[test]]
name = "activities"
path = "tests/activities.rs"
[[test]]
name = "activity_profile"
path = "tests/activity_profile.rs"
[[test]]
name = "agent_profile"
path = "tests/agent_profile.rs"
[[test]]
name = "agents"
path = "tests/agents.rs"
[[test]]
name = "cts-statements"
path = "tests/cts-statements.rs"
[[test]]
name = "examples-interactions"
path = "tests/examples-interactions.rs"
[[test]]
name = "examples-objects"
path = "tests/examples-objects.rs"
[[test]]
name = "examples-statements"
path = "tests/examples-statements.rs"
[[test]]
name = "signed-statement"
path = "tests/signed-statement.rs"
[[test]]
name = "state"
path = "tests/state.rs"
[[test]]
name = "statement"
path = "tests/statement.rs"
[[test]]
name = "user"
path = "tests/user.rs"
[[test]]
name = "utils"
path = "tests/utils.rs"
[[test]]
name = "verb"
path = "tests/verb.rs"
[dependencies.async-recursion]
version = "1.1.1"
[dependencies.base64]
version = "0.22.1"
[dependencies.chrono]
version = "0.4.43"
features = ["serde"]
[dependencies.dashmap]
version = "6.1.0"
[dependencies.dotenvy]
version = "0.15.7"
[dependencies.email_address]
version = "0.2.9"
[dependencies.etag]
version = "4.0.0"
[dependencies.fxhash]
version = "0.2.1"
[dependencies.hex]
version = "0.4.3"
[dependencies.iri-string]
version = "0.7.10"
features = ["serde"]
[dependencies.josekit]
version = "0.10.3"
[dependencies.language-tags]
version = "0.3.2"
[dependencies.lru]
version = "0.16.3"
[dependencies.mime]
version = "0.3.17"
[dependencies.openssl]
version = "0.10.75"
[dependencies.rand]
version = "0.9.2"
features = ["thread_rng"]
[dependencies.rocket]
version = "0.5.1"
features = [
"json",
"secrets",
"tls",
]
[dependencies.rocket-multipart]
version = "0.2.1"
features = ["json"]
[dependencies.semver]
version = "1.0.27"
[dependencies.serde]
version = "1.0.228"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.serde_with]
version = "3.16.1"
features = ["macros"]
[dependencies.speedate]
version = "0.17.0"
[dependencies.sqlx]
version = "0.9.0-alpha.1"
features = [
"runtime-tokio",
"tls-native-tls",
"postgres",
"chrono",
"uuid",
]
[dependencies.take_mut]
version = "0.2.2"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.49.0"
features = ["full"]
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.22"
features = [
"chrono",
"env-filter",
"json",
"parking_lot",
]
[dependencies.unicase]
version = "2.9.0"
[dependencies.url]
version = "2.5.8"
features = ["serde"]
[dependencies.uuid]
version = "1.20.0"
features = [
"serde",
"v7",
]
[dev-dependencies.test-context]
version = "0.5.4"
[dev-dependencies.tracing-test]
version = "0.2.5"