-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
94 lines (83 loc) · 3.14 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[package]
name = "naumachia"
description = "Cardano Smart-Contract Framework"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
[workspace.package]
version = "0.2.0"
edition = "2021"
authors = ["Mitchell Turner"]
license = "Apache-2.0"
repository = "https://github.com/MitchTurner/naumachia"
[workspace]
members = [
"sample-dApps/*",
"trireme",
"nau-scripts",
]
[dependencies]
async-trait = "0.1.57"
rust-argon2 = "1.0.0"
bech32 = "0.9.1"
chacha20 = "0.9.1"
dialoguer = "0.10.2"
serde = { version = "1.0.143", features = ["derive"] }
serde_with = {version = "2.0.0", features = ["json"]}
serde_json = "1.0"
thiserror = "1.0.40"
tokio = { version = "1.20.1", features = ["full"] }
reqwest = { version = "0.11.11", features = ["json"] }
url = "2.2.2"
toml = "0.5.9"
tiny-bip39 = "1.0.0"
futures = "0.3.23"
hex = "0.4.3"
dirs = "4.0.0"
uplc = "1.0.21-alpha"
tempfile = "3.3.0"
minicbor = "0.19.0"
rand = "0.8.5"
pallas-addresses = "0.19.0-alpha.0"
pallas-primitives = "0.20.0"
ogmios-client = { version = "0.1.0", git = "https://github.com/free-honey/ogmios-client.git" }
scrolls-client = { version = "0.1.0", git = "https://github.com/free-honey/scrolls-client.git" }
secrecy = "0.8.0"
tracing = "0.1.40"
[dependencies.blockfrost-http-client]
version = "0.0.14"
#git = "https://github.com/MitchTurner/blockfrost-http-client.git"
[dependencies.cardano-multiplatform-lib]
version = "3.1.1"
git = "https://github.com/dcSpark/cardano-multiplatform-lib.git"
rev = "685354495562ff879101fd023eb89555db9bbb1e"
[dependencies.uuid]
version = "1.1.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
[dev-dependencies]
clap = { version = "3.2.16", features = ["derive"] }
proptest = "1.0.0"
rand = "0.8.5"
sha2 = "0.10.6"
[patch.crates-io]
uplc = { version = "1.0.21-alpha", git = "https://github.com/aiken-lang/aiken.git", tag = "v1.0.21-alpha"}
aiken = { version = "1.0.21-alpha", git = "https://github.com/aiken-lang/aiken.git", tag = "v1.0.21-alpha"}
aiken-lang = { version = "1.0.21-alpha", git = "https://github.com/aiken-lang/aiken.git", tag = "v1.0.21-alpha"}
aiken-project = { version = "1.0.21-alpha", git = "https://github.com/aiken-lang/aiken.git", tag = "v1.0.21-alpha"}
#[patch."https://github.com/aiken-lang/aiken.git"]
#aiken = { version = "1.0.3-alpha", path = "../aiken-lang/aiken/crates/aiken"}
#aiken-project = { version = "1.0.3-alpha", path = "../aiken-lang/aiken/crates/aiken-project" }
#uplc = { version = "1.0.3-alpha", path = "../aiken-lang/aiken/crates/uplc" }
#[patch."https://github.com/MitchTurner/blockfrost-http-client.git"]
#blockfrost-http-client = { version = "0.0.13", path = "../blockfrost-http-client"}
#
#[patch."https://github.com/dcSpark/cardano-multiplatform-lib.git"]
#cardano-multiplatform-lib = { version = "3.1.1", path = "../forks/cardano-multiplatform-lib/rust"}
#[patch."https://github.com/free-honey/ogmios-client.git"]
#ogmios-client = { version = "0.1.0", path = "../../FreeHoney/ogmios-client"}