blob: 039bb5fa4123ef0c556b427790c7297ea131dcd3 (
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
29
30
31
32
33
|
[package]
name = "sts"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "sts"
path = "src/main.rs"
[[bin]]
name = "migrate"
path = "src/bin/migrate.rs"
[[bin]]
name = "debug"
path = "src/bin/debug.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"
subtle = "2.4"
|