-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the descriptions in Cargo.toml consistent
- Loading branch information
Showing
3 changed files
with
3 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "fend" | |
# Don't forget to update print_version() | ||
version = "0.1.10" | ||
authors = ["printfn <[email protected]>"] | ||
description = "Calculator and unit conversion tool" | ||
description = "Arbitrary-precision unit-aware calculator" | ||
homepage = "https://github.com/printfn/fend" | ||
repository = "https://github.com/printfn/fend" | ||
readme = "README.md" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "fend-core" | |
# Don't forget to update html_root_url and get_version() | ||
version = "0.1.10" | ||
authors = ["printfn <[email protected]>"] | ||
description = "Backend for calculator and unit conversion tool fend" | ||
description = "Arbitrary-precision unit-aware calculator" | ||
homepage = "https://github.com/printfn/fend" | ||
repository = "https://github.com/printfn/fend" | ||
readme = "README.md" | ||
|
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ authors = ["printfn <[email protected]>"] | |
edition = "2018" | ||
license = "MIT" | ||
repository = "https://github.com/printfn/fend" | ||
description = "Arbitrary-precision unit-aware calculator" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|