-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
41 lines (39 loc) · 1.17 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
30
31
32
33
34
35
36
37
38
39
40
41
[workspace]
resolver = "2"
members = ["credit-sales"]
exclude = ["swquery", "frontend","server"]
[workspace.package]
edition = "2021"
license = "Apache-2.0"
authors = [
"Arthur Bretas <arthurbretas1@gmail.com>",
"Marcelo G Feitoza <feitoza.marcelo7@gmail.com>",
"Pedro Hagge Baptista <pedro.baptista@sou.inteli.edu.br>",
"Victor Carvalho <victordecarvalho342@gmail.com>",
]
repository = "https://github.com/vict0rcarvalh0/swquery"
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
axum = { version = "0.7.9" }
serde_json = "1.0"
sqlx = { version = "0.8.2", features = [
"runtime-tokio-native-tls",
"postgres",
"chrono",
] }
dotenvy = "0.15"
chrono = { version = "0.4", features = ["serde"] }
tower = { version = "0.5.1", features = ["util"] }
http-body-util = "0.1.0"
hyper-util = { version = "0.1", features = [
"client",
"http1",
"client-legacy",
] }
tower-http = { version = "0.6.1", features = ["trace"] }
solana-sdk = "2.0.8"
thiserror = "1.0"
reqwest = { version = "0.11", features = ["json"] }