Skip to content

Commit b7b8247

Browse files
committed
fix epic to use cs_epic_* crates
1 parent 5674649 commit b7b8247

23 files changed

+966
-1174
lines changed

Cargo.lock

Lines changed: 419 additions & 272 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
2-
name = "epic"
3-
version = "3.3.2"
4-
authors = ["Epic Foundation <[email protected]>"]
2+
name = "epic" # cs_epic for publishing.
3+
version = "1.0.0" # 1.0.0 = 3.3.2
4+
authors = ["Epic Foundation <[email protected]>", "Likho", "sneurlax"]
55
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
77
repository = "https://github.com/EpicCash/epic"
@@ -45,14 +45,14 @@ failure = "0.1"
4545
failure_derive = "0.1"
4646
reqwest = "0.11.11"
4747

48-
stack_epic_api = { path = "./api", version = "3.3.2" }
49-
stack_epic_config = { path = "./config", version = "3.3.2" }
50-
stack_epic_core = { path = "./core", version = "3.3.2" }
51-
stack_epic_keychain = { path = "./keychain", version = "3.3.2" }
52-
stack_epic_p2p = { path = "./p2p", version = "3.3.2" }
53-
stack_epic_servers = { path = "./servers", version = "3.3.2" }
54-
stack_epic_util = { path = "./util", version = "3.3.2" }
55-
stack_epic_chain = { path = "./chain", version = "3.3.2" }
48+
epic_api = { package = "cs_epic_api", path = "./api", version = "^1.0.0" }
49+
epic_config = { package = "cs_epic_config", path = "./config", version = "^1.0.0" }
50+
epic_core = { package = "cs_epic_core", path = "./core", version = "^1.0.1" }
51+
epic_keychain = { package = "cs_epic_keychain", path = "./keychain", version = "^1.0.1" }
52+
epic_p2p = { package = "cs_epic_p2p", path = "./p2p", version = "^1.0.2" }
53+
epic_servers = { package = "cs_epic_servers", path = "./servers", version = "^1.0.1" }
54+
epic_util = { package = "cs_epic_util", path = "./util", version = "^1.0.1" }
55+
epic_chain = { package = "cs_epic_chain", path = "./chain", version = "^1.0.1" }
5656

5757
cursive = { version = "0.16", default-features = false, features = [
5858
"pancurses-backend",
@@ -70,5 +70,5 @@ harness = false
7070
built = "0.3"
7171

7272
[dev-dependencies]
73-
stack_epic_store = { path = "./store", version = "3.3.2" }
73+
epic_store = { package = "cs_epic_store", path = "./store", version = "^1.0.1" }
7474
cucumber_rust = { version = "^0.5.1", default-features = false }

0 commit comments

Comments
 (0)