blob: 3ab38b422a8711282673ae1c1069021c08f34122 (
plain)
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
|
[package]
name = "sts"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "sts"
path = "src/main.rs"
[[bin]]
name = "migrate"
path = "src/bin/migrate.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
jsonwebtoken = "9.0"
uuid = { version = "1.0", features = ["v4"] }
url = "2.0"
base64 = "0.22"
rand = "0.8"
urlencoding = "2.1"
rsa = "0.9"
sha2 = "0.10"
rusqlite = { version = "0.32", features = ["bundled", "chrono"] }
chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1.0", features = ["full"] }
anyhow = "1.0"
|