-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) · 1.02 KB
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
[package]
name = "requestx-api"
version = "1.3.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = { version = "0.5.1", features = ["json", "serde_json"] }
chrono = "0.4.42"
regex = "1.12.2"
dash-rs = {git = "https://github.com/zRyder/dash-rs.git", branch = "develop-stable"}
reqwest = { version = "0.12.24", features = ["json"] }
async-trait = "0.1.89"
sea-orm = { version = "2.0.0-rc.19", features = [ "sqlx-mysql", "runtime-async-std-native-tls", "macros", "mock" ] }
config = "0.15.19"
serde = { version = "1.0.228", features = ["derive"] }
toml = "0.9.8"
serde_derive = "1.0.228"
log4rs = { version = "1.2.0", features = ["rolling_file_appender", "console_appender", "compound_policy", "delete_roller"] }
jsonwebtoken = "9.2.0"
handlebars = "6.3.2"
tokio = {version = "1.48.0", features = ["rt-multi-thread"] }
ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
bs58 = "0.5.1"
[dev-dependencies]
tokio-test = "0.4.3"
mockall = "0.12.1"