-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathCargo.toml
41 lines (34 loc) · 925 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
33
34
35
36
37
38
39
40
41
[package]
name = "sapio-contrib"
version = "0.2.4"
license = "MPL-2.0"
authors = ["Jeremy Rubin <[email protected]>"]
edition = "2021"
repository = "https://github.com/sapio-lang/sapio"
homepage = "https://sapio-lang.org"
description = "User submitted staging ground for contracts and utilities made for Sapio."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
schemars = "0.8.0"
serde_json = "1.0"
serde = "1.0"
serde_derive = "1.0"
lazy_static = "1.4.0"
[dependencies.sapio_macros]
path = "../sapio_macros"
version = "0.2.0"
[dependencies.bitcoin]
package = "sapio-bitcoin"
version = "0.28.0"
features = ['use-serde']
[dependencies.sapio]
path = "../sapio"
version = "0.2.0"
[dependencies.sapio-base]
path = "../sapio-base"
version = "0.2.0"
[dependencies.sapio-ctv-emulator-trait]
path = "../emulator-trait"
version = "0.2.0"
[dev-dependencies]
rand = "^0.6"