-
Notifications
You must be signed in to change notification settings - Fork 36
/
Cargo.toml
25 lines (22 loc) · 934 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
[package]
name = "concordium-smart-contract-testing"
version = "4.3.0"
edition = "2021"
rust-version = "1.73"
license = "MPL-2.0"
readme = "README.md"
description = "A companion crate to `concordium-std` that supports off-chain end-to-end testing of smart contracts."
homepage = "https://github.com/Concordium/concordium-rust-smart-contracts"
repository = "https://github.com/Concordium/concordium-rust-smart-contracts"
exclude = ["tests"] # Do not publish tests.
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
concordium-rust-sdk = { version = "5", path = "../concordium-rust-sdk" }
tokio = { version = "1.28", features = ["rt-multi-thread", "time"] }
sha2 = "0.10"
anyhow = "1"
thiserror = "1.0"
num-bigint = "0.4"
num-integer = "0.1"
[dev-dependencies]
rand = "0.8"