forked from near/near-enhanced-api-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 1.05 KB
/
Cargo.toml
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
[package]
name = "near-enhanced-api"
version = "0.1.0"
authors = ["Near Inc <[email protected]>"]
publish = false
rust-version = "1.61.0"
edition = "2021"
[dependencies]
actix-web = { version = "4.0.1", features = ["macros"] }
actix-http = { version = "3.0.4" }
actix-cors = "0.6.1"
borsh = { version = "0.9.1" }
derive_more = "0.99.9"
dotenv = "0.15.0"
futures = "0.3.5"
hex = "0.4"
num-traits = "0.2.15"
paperclip = { version = "0.7.1", features = ["v2", "v3", "actix4", "actix4-validator"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
strum = { version = "0.24", features = ["derive"] }
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres", "bigdecimal", "json"] }
tokio = { version = "1.1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
actix-web-validator = "4.0.0"
validator = { version = "0.15", features = ["derive"] }
near-primitives = "0.14.0"
near-jsonrpc-client = "0.4.0-beta.0"
near-jsonrpc-primitives = "0.14.0"
[dev-dependencies]
insta = "1"