mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-06 21:34:00 -05:00
32 lines
980 B
TOML
32 lines
980 B
TOML
[package]
|
|
name = "gg"
|
|
version = "0.4.1"
|
|
description = """\
|
|
Genesis Generator, a command-line utility to generate,\
|
|
display and verify a base64 encoded Darkfi genesis block\
|
|
"""
|
|
authors = ["Dyne.org foundation <foundation@dyne.org>"]
|
|
repository = "https://codeberg.org/darkrenaissance/darkfi"
|
|
license = "AGPL-3.0-only"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
|
|
[dependencies]
|
|
# Darkfi
|
|
darkfi = {path = "../../../", features = ["bs58", "validator"]}
|
|
darkfi_money_contract = {path = "../../../src/contract/money", features = ["no-entrypoint", "client"]}
|
|
darkfi-contract-test-harness = {path = "../../../src/contract/test-harness"}
|
|
darkfi-sdk = {path = "../../../src/sdk"}
|
|
darkfi-serial = {path = "../../../src/serial"}
|
|
|
|
# Misc
|
|
bs58 = "0.5.1"
|
|
clap = {version = "4.4.11", features = ["derive"]}
|
|
sled-overlay = "0.1.15"
|
|
smol = "2.0.2"
|
|
|
|
[patch.crates-io]
|
|
halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v032"}
|
|
halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v032"}
|