-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (61 loc) · 1.98 KB
/
Cargo.toml
File metadata and controls
71 lines (61 loc) · 1.98 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[workspace]
resolver = "3"
members = ["api", "types"]
rust-version = "1.86"
[workspace.package]
edition = "2024"
version = "0.8.3"
authors = [
"akorchyn <artur.yurii.korchynskyi@gmail.com>",
"frol <frolvlad@gmail.com>",
"Near Inc <hello@nearprotocol.com>",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/near/near-api-rs"
[workspace.dependencies]
near-api-types = { path = "types", version = "~0.8.3" }
borsh = "1.5"
async-trait = "0.1"
base64 = "0.22"
reqwest = "0.12"
futures = "0.3"
# Ad-hoc fix for compilation errors (rustls is used instead of openssl to ease the deployment avoiding the system dependency on openssl)
openssl = { version = "0.10", default-features = false }
bip39 = "2.0.0"
serde = { version = "1.0", features = ["derive"], default-features = false }
serde_json = "1.0.57"
serde_dbgfmt = "0.1.0"
slipped10 = { version = "0.4.6" }
url = { version = "2", features = ["serde"] }
tokio = { version = "1.0", default-features = false }
tracing = "0.1"
thiserror = "2"
zstd = "0.13"
keyring = { version = "3.2", default-features = false }
bs58 = "0.5"
sha2 = "0.10"
bolero = "0.13"
serde_with = { version = "3.16.1", features = ["base64", "macros"] }
primitive-types = { version = "0.10.0", default-features = false }
ed25519-dalek = { version = "2.1.0", default-features = false, features = [] }
secp256k1 = { version = "0.27.0", default-features = false, features = [
"recovery",
"alloc",
] }
near-account-id = { version = "2.0.0", features = ["serde", "borsh"] }
near-gas = { version = "0.3", features = ["serde", "borsh"] }
near-token = { version = "0.3", features = ["serde", "borsh"] }
near-abi = "0.4.2"
near-ledger = "0.9.1"
near-openapi-client = "0.7"
near-openapi-types = "0.7"
# Dev-dependencies
near-primitives = { version = "0.34" }
near-crypto = { version = "0.34" }
near-sandbox = { version = "0.3.7", features = [
"generate",
], default-features = false }
testresult = "0.4"
[workspace.lints.clippy]
unwrap_used = "deny"
expect_used = "deny"