-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
1 parent
f2d11f3
commit 2f5f5a9
Showing
3 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
} |