Skip to content

Commit

Permalink
Merge pull request #126 from who-biz/ver-bump-3.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
who-biz authored Feb 22, 2024
2 parents d1f0055 + 9dab447 commit ee379d2
Show file tree
Hide file tree
Showing 16 changed files with 135 additions and 136 deletions.
96 changes: 43 additions & 53 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "epic"
version = "3.5.0"
authors = ["Epic Foundation <epiccash@brickabode.com>"]
version = "3.5.2"
authors = ["Epic Foundation <info@epiccash.com>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
repository = "https://github.com/EpicCash/epic"
keywords = ["crypto", "epic", "mimblewimble"]
readme = "README.md"
exclude = ["**/*.epic", "**/*.epic2"]
build = "src/build/build.rs"
edition = "2018"
edition = "2021"

[workspace]
members = [
Expand Down Expand Up @@ -50,14 +50,14 @@ reqwest = "0.11.11"

tokio = { version = "1.32", features = ["full"] }

epic_api = { path = "./api", version = "3.5.0" }
epic_config = { path = "./config", version = "3.5.0" }
epic_core = { path = "./core", version = "3.5.0" }
epic_keychain = { path = "./keychain", version = "3.5.0" }
epic_p2p = { path = "./p2p", version = "3.5.0" }
epic_servers = { path = "./servers", version = "3.5.0" }
epic_util = { path = "./util", version = "3.5.0" }
epic_chain = { path = "./chain", version = "3.5.0" }
epic_api = { path = "./api", version = "3.5.2" }
epic_config = { path = "./config", version = "3.5.2" }
epic_core = { path = "./core", version = "3.5.2" }
epic_keychain = { path = "./keychain", version = "3.5.2" }
epic_p2p = { path = "./p2p", version = "3.5.2" }
epic_servers = { path = "./servers", version = "3.5.2" }
epic_util = { path = "./util", version = "3.5.2" }
epic_chain = { path = "./chain", version = "3.5.2" }

cursive = { version = "0.17", default-features = false, features = [
"pancurses-backend",
Expand All @@ -75,5 +75,5 @@ harness = false
built = { version = "0.7.1", features = ["git2", "cargo-lock"] }

[dev-dependencies]
epic_store = { path = "./store", version = "3.5.0" }
epic_store = { path = "./store", version = "3.5.2" }
cucumber_rust = { version = "^0.5.1", default-features = false }
18 changes: 9 additions & 9 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "epic_api"
version = "3.5.0"
authors = ["Epic Foundation <epiccash@brickabode.com>"]
version = "3.5.2"
authors = ["Epic Foundation <info@epiccash.com>"]
description = "APIs for epic, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
repository = "https://github.com/EpicCash/epic"
keywords = ["crypto", "epic", "mimblewimble"]
workspace = ".."
edition = "2018"
edition = "2021"

[dependencies]
easy-jsonrpc-mw = "0.5.4"
Expand Down Expand Up @@ -42,9 +42,9 @@ bytes = "0.5"



epic_core = { path = "../core", version = "3.5.0" }
epic_chain = { path = "../chain", version = "3.5.0" }
epic_p2p = { path = "../p2p", version = "3.5.0" }
epic_pool = { path = "../pool", version = "3.5.0" }
epic_store = { path = "../store", version = "3.5.0" }
epic_util = { path = "../util", version = "3.5.0" }
epic_core = { path = "../core", version = "3.5.2" }
epic_chain = { path = "../chain", version = "3.5.2" }
epic_p2p = { path = "../p2p", version = "3.5.2" }
epic_pool = { path = "../pool", version = "3.5.2" }
epic_store = { path = "../store", version = "3.5.2" }
epic_util = { path = "../util", version = "3.5.2" }
Loading

0 comments on commit ee379d2

Please sign in to comment.