Skip to content

Commit

Permalink
Add new jcli-lib crate to workspace
Browse files Browse the repository at this point in the history
This is the beginning step for refactoring the jcli-lib crate from the
jcli binary crate. This is the starting commit for #3172
  • Loading branch information
filip-dulic-bloxico committed Apr 13, 2021
1 parent f2d11f3 commit 2f5f5a9
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = [
"jormungandr-lib",
"jormungandr",
"jcli",
"jcli-lib",
"modules/settings",
"modules/blockchain",
"testing/jormungandr-testing-utils",
Expand Down
14 changes: 14 additions & 0 deletions jcli-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "jcli-lib"
version = "0.11.1"
authors = [ "[email protected]" ]
license = "MIT OR Apache-2.0"
repository = "https://github.com/input-output-hk/jormungandr"
homepage = "https://github.com/input-output-hk/jormungandr#README.md"
documentation = "https://github.com/input-output-hk/jormungandr#USAGE.md"
description = """
Midgard Serpent
"""
edition = "2018"

[dependencies]
7 changes: 7 additions & 0 deletions jcli-lib/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}

0 comments on commit 2f5f5a9

Please sign in to comment.