forked from manuelmauro/algonaut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (44 loc) · 1.59 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
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
authors = ["Manuel Mauro <[email protected]>", "Ivan Schuetz <[email protected]>",]
description = "A Rusty sdk for the Algorand blockchain."
edition = "2018"
keywords = ["Algorand", "sdk"]
license = "MIT"
name = "algonaut"
repository = "https://github.com/manuelmauro/algonaut"
version = "0.3.0"
[workspace]
members = [
"algonaut_client",
"algonaut_model",
"algonaut_core",
"algonaut_crypto",
"algonaut_encoding",
"algonaut_transaction",
]
[dependencies]
algonaut_client = {path = "algonaut_client", version = "0.3.0", default-features = false}
algonaut_model = {path = "algonaut_model", version = "0.3.0"}
algonaut_core = {path = "algonaut_core", version = "0.3.0"}
algonaut_crypto = {path = "algonaut_crypto", version = "0.3.0"}
algonaut_encoding = {path = "algonaut_encoding", version = "0.3.0"}
algonaut_transaction = {path = "algonaut_transaction", version = "0.3.0"}
thiserror = "1.0.23"
rmp-serde = "0.15.5"
[dev-dependencies]
dotenv = "0.15.0"
tokio = { version = "1.6.0", features = ["rt-multi-thread", "macros"] }
rand = "0.8.3"
getrandom = { version = "0.2.2", features = ["js"] }
data-encoding = "2.3.1"
# Using main branch because of this issue: https://github.com/cucumber-rs/cucumber/issues/173
# TODO replace with v0.11 once released ("few days" from now, according to maintainer)
cucumber = { git = "https://github.com/cucumber-rs/cucumber.git" }
async-trait = "0.1.51"
[features]
default = ["native"]
native = ["algonaut_client/native"]
rustls = ["algonaut_client/rustls"]
[[test]]
name = "features_runner"
harness = false # Allows Cucumber to print output instead of libtest