chore: Update packages to v0.5.0

This commit is contained in:
parazyd
2025-05-09 11:32:19 +02:00
parent ecf27eae38
commit e002530bb2
21 changed files with 366 additions and 1596 deletions

1918
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -24,7 +24,6 @@ members = [
"bin/darkfid",
"bin/minerd",
"bin/explorer/explorerd",
"bin/darkfi-mmproxy",
"bin/drk",
"bin/fud/fu",
"bin/fud/fud",

View File

@@ -1,6 +1,6 @@
[package]
name = "dhtd"
version = "0.4.1"
version = "0.5.0"
homepage = "https://dark.fi"
description = "DHT daemon"
authors = ["Dyne.org foundation <foundation@dyne.org>"]

View File

@@ -1,6 +1,6 @@
[package]
name = "drk"
version = "0.4.1"
version = "0.5.0"
homepage = "https://dark.fi"
description = "Command-line client for darkfid"
authors = ["Dyne.org foundation <foundation@dyne.org>"]

View File

@@ -1,6 +1,6 @@
[package]
name = "explorerd"
version = "0.4.1"
version = "0.5.0"
description = "Daemon to listen for new blocks from darkfid and store them in an easily accessible format for further usage."
authors = ["Dyne.org foundation <foundation@dyne.org>"]
repository = "https://codeberg.org/darkrenaissance/darkfi"

View File

@@ -1,7 +1,7 @@
[package]
name = "fu"
description = "Command-line client for fud"
version = "0.4.1"
version = "0.5.0"
edition = "2021"
authors = ["Dyne.org foundation <foundation@dyne.org>"]
license = "AGPL-3.0-only"
@@ -23,4 +23,3 @@ termcolor = "1.4.1"
[lints]
workspace = true

View File

@@ -1,7 +1,7 @@
[package]
name = "fud"
description = "File-sharing Utility Daemon, using DHT for records discovery."
version = "0.4.1"
version = "0.5.0"
edition = "2021"
authors = ["Dyne.org foundation <foundation@dyne.org>"]
license = "AGPL-3.0-only"

View File

@@ -1,7 +1,7 @@
[package]
name = "genev"
description = "Generic Event example CLI"
version = "0.4.1"
version = "0.5.0"
edition = "2021"
authors = ["Dyne.org foundation <foundation@dyne.org>"]
license = "AGPL-3.0-only"

View File

@@ -1,7 +1,7 @@
[package]
name = "genevd"
description = "Generic Event example daemon"
version = "0.4.1"
version = "0.5.0"
edition = "2021"
authors = ["Dyne.org foundation <foundation@dyne.org>"]
license = "AGPL-3.0-only"

View File

@@ -1,7 +1,7 @@
[package]
name = "lilith"
description = "Daemon that spawns P2P seeds"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
authors = ["Dyne.org foundation <foundation@dyne.org>"]
license = "AGPL-3.0-only"

View File

@@ -1,6 +1,6 @@
[package]
name = "minerd"
version = "0.4.1"
version = "0.5.0"
homepage = "https://dark.fi"
description = "Darkfi mining daemon"
authors = ["Dyne.org foundation <foundation@dyne.org>"]

View File

@@ -1,7 +1,7 @@
[package]
name = "taud"
description = "Encrypted tasks management app using peer-to-peer network and Event Graph."
version = "0.4.2"
version = "0.5.0"
edition = "2021"
authors = ["Dyne.org foundation <foundation@dyne.org>"]
license = "AGPL-3.0-only"

View File

@@ -1,6 +1,6 @@
[package]
name = "vanityaddr"
version = "0.4.1"
version = "0.5.0"
homepage = "https://dark.fi"
description = "Vanity address generation tool for DarkFi keypairs, contract IDs, and token IDs"
authors = ["Dyne.org foundation <foundation@dyne.org>"]
@@ -20,4 +20,3 @@ rayon = "1.10.0"
[lints]
workspace = true

View File

@@ -1,6 +1,6 @@
[package]
name = "zkas"
version = "0.4.1"
version = "0.5.0"
homepage = "https://dark.fi"
description = "Compiler for the Halo2 zkVM language used in DarkFi."
authors = ["Dyne.org foundation <foundation@dyne.org>"]
@@ -14,4 +14,3 @@ darkfi = {path = "../../", features = ["zkas"]}
[lints]
workspace = true

View File

@@ -1,6 +1,6 @@
[package]
name = "darkfi-fuzz"
version = "0.0.0"
version = "0.5.0"
publish = false
edition = "2021"

View File

@@ -1,6 +1,6 @@
[package]
name = "darkfi_dao_contract"
version = "0.4.1"
version = "0.5.0"
authors = ["Dyne.org foundation <foundation@dyne.org>"]
license = "AGPL-3.0-only"
edition = "2021"

View File

@@ -1,6 +1,6 @@
[package]
name = "darkfi_deployooor_contract"
version = "0.4.1"
version = "0.5.0"
authors = ["Dyne.org foundation <foundation@dyne.org>"]
license = "AGPL-3.0-only"
edition = "2021"
@@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"]
darkfi-sdk = { path = "../../sdk", features = ["wasm"] }
darkfi-serial = { version = "0.4.2", features = ["derive", "crypto"] }
thiserror = "2.0.12"
wasmparser = "0.229.0"
wasmparser = "0.230.0"
# The following dependencies are used for the client API and
# probably shouldn't be in WASM

View File

@@ -1,6 +1,6 @@
[package]
name = "darkfi_money_contract"
version = "0.4.1"
version = "0.5.0"
authors = ["Dyne.org foundation <foundation@dyne.org>"]
license = "AGPL-3.0-only"
edition = "2021"

View File

@@ -1,6 +1,6 @@
[package]
name = "darkfi-contract-test-harness"
version = "0.4.1"
version = "0.5.0"
authors = ["Dyne.org foundation <foundation@dyne.org>"]
license = "AGPL-3.0-only"
edition = "2021"

View File

@@ -1,6 +1,6 @@
[package]
name = "darkfi-sdk"
version = "0.4.1"
version = "0.5.0"
homepage = "https://dark.fi"
description = "SDK used for developing smart contracts on DarkFi"
authors = ["Dyne.org foundation <foundation@dyne.org>"]

View File

@@ -1,7 +1,7 @@
[package]
name = "darkfi-sdk-py"
description = "Python bindings for the DarkFi SDK"
version = "0.4.1"
version = "0.5.0"
edition = "2021"
authors = ["Dyne.org foundation <foundation@dyne.org>"]
license = "AGPL-3.0-only"