-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (60 loc) · 1.54 KB
/
Cargo.toml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "xapi-rs"
authors = ["Raif S. Naffah <[email protected]>"]
version = "0.1.4"
edition = "2021"
description = "A conformant LRS implementation of xAPI 2.0.0"
repository = "https://github.com/raif-s-naffah/xapi-rs"
license = "GPL-3.0-or-later"
keywords = ["E-learning", "xAPI", "TinCan", "LRS"]
categories = ["data-structures", "api-bindings", "web-programming"]
[dependencies]
# ----- common / workspace -----
tracing = "0"
thiserror = "1"
serde = "1"
serde_json = "1"
iri-string = { version = "0", features = ["serde"] }
chrono = { version = "0", features = ["serde"] }
email_address = "= 0" ## IMPORTANT: versions > 0.2.4 and <= 0.2.7 are broken
uuid = { version = "1", features = ["serde", "v7"] }
language-tags = "0"
# ----- data -----
serde_with = { version = "3", features = [ "macros" ] }
url = { version = "2", features = ["serde"] }
speedate = "0"
mime = "0"
semver = "1"
merge = "0.1"
unicase = "2"
take_mut = "0.2.2"
# ----- db -----
dotenvy = "0"
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.8", features = [
"runtime-tokio",
"tls-native-tls",
"postgres",
"chrono",
"uuid",
] }
async-recursion = "1"
rand = "0"
# ----- lrs -----
tracing-subscriber = { version = "0", features = [
"chrono",
"env-filter",
"json",
"parking_lot",
] }
rocket = { version = "0.5", features = ["json", "secrets", "tls"] }
rocket-multipart = { version = "0", features = ["json"] }
etag = "4"
ahash = "0"
sha2 = "0"
hex = "0"
base64 = "0"
dashmap = "6"
[dev-dependencies]
test-context = "0"
tracing-test = "0"