Updated kalk_cli's Cargo.toml to use kalk from crates.io instead of a local version.

This commit is contained in:
PaddiM8 2020-06-12 00:14:28 +02:00
parent 059d8d4b17
commit f5fe9c5180
2 changed files with 3 additions and 1 deletions

2
kalk_cli/Cargo.lock generated
View File

@ -139,6 +139,8 @@ dependencies = [
[[package]]
name = "kalk"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf9df80b14ea806a6b5c90939bd8905ecf0b19dc4e94a762d66a233238b23a10"
dependencies = [
"phf",
"regex",

View File

@ -14,7 +14,7 @@ categories = ["mathematics", "command-line-utilities"]
panic = "abort"
[dependencies]
kalk = { path = "../kalk" }
kalk = "0.1.3"
rustyline = "6.1.2"
ansi_term = "0.12"
regex = "1"