diff options
author | metamuffin <yvchraiqi@protonmail.com> | 2022-06-10 10:59:47 +0200 |
---|---|---|
committer | metamuffin <yvchraiqi@protonmail.com> | 2022-06-10 10:59:47 +0200 |
commit | 6f6db73a126057514912c5e6b372ef225a1065b7 (patch) | |
tree | 22518de3c0213d85166aa53f0fa476a6d8e2d780 /karlc | |
parent | 3238f8517097745032e19b3e26f57f0465a00b28 (diff) | |
download | karlender-6f6db73a126057514912c5e6b372ef225a1065b7.tar karlender-6f6db73a126057514912c5e6b372ef225a1065b7.tar.bz2 karlender-6f6db73a126057514912c5e6b372ef225a1065b7.tar.zst |
moved code to another crate
Diffstat (limited to 'karlc')
-rw-r--r-- | karlc/Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/karlc/Cargo.toml b/karlc/Cargo.toml index 7e43bed..e45419c 100644 --- a/karlc/Cargo.toml +++ b/karlc/Cargo.toml @@ -3,6 +3,7 @@ name = "karlc" version = "0.1.0" edition = "2021" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] +karlcommon = { path = "../karlcommon" } + +serde = { version = "1.0.137", features = ["derive"] } |