Skip to content

Commit

Permalink
[cli] new: Link to GitHub dependencies instead of using relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
shawntabrizi authored and Robbepop committed Mar 26, 2019
1 parent 3f9a5fe commit 7228fff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/src/cmd/new.rs
Expand Up @@ -42,9 +42,9 @@ authors = ["[your_name] <[your_email]>"]
edition = "2018"
[dependencies]
pdsl_core = {{ path = "../../../core" }}
pdsl_model = {{ path = "../../../model" }}
pdsl_lang = {{ path = "../../../lang" }}
pdsl_core = {{ git = "https://github.com/Robbepop/pdsl", package = "pdsl_core" }}
pdsl_model = {{ git = "https://github.com/Robbepop/pdsl", package = "pdsl_model" }}
pdsl_lang = {{ git = "https://github.com/Robbepop/pdsl", package = "pdsl_lang" }}
parity-codec = {{ version = "3.1", default-features = false, features = ["derive"] }}
[lib]
Expand Down

0 comments on commit 7228fff

Please sign in to comment.