Initial Commit
This commit is contained in:
commit
c09b00ff35
30 changed files with 1930 additions and 0 deletions
26
Cargo.toml
Normal file
26
Cargo.toml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
[package]
|
||||
name = "rboss"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
rocket = { version = "0.5.1", features = ["json"] }
|
||||
rocket_cors = "0.6.0"
|
||||
dotenvy = "0.15.7"
|
||||
sqlx = { version = "0.8.3", features = [ "postgres", "runtime-tokio", "macros", "chrono" ] }
|
||||
serde = { version = "1.0", features = [ "derive" ] }
|
||||
serde_json = "1"
|
||||
quick-xml = { version = "0.31", features = [ "serialize" ] }
|
||||
chrono = "0.4"
|
||||
sha1 = "0.10"
|
||||
sha2 = "0.10"
|
||||
hex = "0.4"
|
||||
hex-literal = "0.4"
|
||||
aes = "0.8"
|
||||
ctr = "0.9"
|
||||
hmac = "0.12"
|
||||
md-5 = "0.10"
|
||||
rand = "0.8"
|
||||
anyhow = "1.0"
|
||||
base64 = "0.21"
|
||||
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
|
||||
Loading…
Add table
Add a link
Reference in a new issue