forked from near/near-sdk-contract-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 873 Bytes
/
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
[package]
authors = ["Jacob Lindahl <[email protected]>"]
categories = ["wasm", "cryptography::cryptocurrencies"]
description = """
Helpful functions and macros for developing smart contracts on NEAR Protocol.
"""
documentation = "https://docs.rs/near-sdk-contract-tools"
edition = "2021"
license = "GPL-3.0"
name = "near-sdk-contract-tools"
repository = "https://github.com/NEARFoundation/near-sdk-contract-tools"
version = "0.7.2"
[dependencies]
near-sdk = {version = "4.1.0", default-features = false}
near-sdk-contract-tools-macros = {version = "=0.7.2", path = "./macros"}
serde = "1.0.144"
serde_json = "1.0.85"
thiserror = "1.0.35"
[dev-dependencies]
near-sdk = {version = "4.1.0", default-features = false, features = ["unit-testing", "legacy"]}
[features]
unstable = ["near-sdk/unstable"]
[workspace]
members = [
".",
"macros",
"workspaces-tests",
]