Skip to content
This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Commit 2453d9e

Browse files
committed
Fixed cargo.toml.
1 parent 41d5571 commit 2453d9e

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icy_view"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
edition = "2021"
55
description = "A fast ansi art viewer."
66
authors = ["Mike Krüger <mkrueger@posteo.de>"]
@@ -28,11 +28,11 @@ egui-modal = "0.2.4"
2828
egui-notify = "0.10.0"
2929

3030
image = { version = "0.24", features = ["jpeg", "png", "gif", "bmp"] }
31+
view_library = { path ="./view_library" }
3132
icy_engine = { git = "https://github.com/mkrueger/icy_engine.git" }
3233
icy_engine_egui = { git ="https://github.com/mkrueger/icy_engine_egui" }
3334
#icy_engine = { path ="../icy_engine" }
3435
#icy_engine_egui = { path ="../icy_engine_egui" }
35-
view_library = { path ="./view_library" }
3636

3737
[build-dependencies]
3838
winres = "0.1"
@@ -47,6 +47,7 @@ copyright = "Copyright (c) Mike Krüger 2023. All rights reserved."
4747
[package.metadata.deb]
4848
section="utils"
4949
copyright = "Copyright (c) Mike Krüger 2023. All rights reserved."
50+
revision=""
5051
license-file="build/license.rtf"
5152
depends = "libasound2"
5253
assets = [

view_library/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ thiserror = "1.0"
2525
anyhow = "1.0.75"
2626

2727
image = { version = "0.24", features = ["jpeg", "png", "gif", "bmp"] }
28-
#icy_engine = { git = "https://github.com/mkrueger/icy_engine.git" }
29-
#icy_engine_egui = { git ="https://github.com/mkrueger/icy_engine_egui" }
30-
icy_engine = { path ="../../icy_engine" }
31-
icy_engine_egui = { path ="../../icy_engine_egui" }
28+
icy_engine = { git = "https://github.com/mkrueger/icy_engine.git" }
29+
icy_engine_egui = { git ="https://github.com/mkrueger/icy_engine_egui" }
30+
#icy_engine = { path ="../../icy_engine" }
31+
#icy_engine_egui = { path ="../../icy_engine_egui" }

0 commit comments

Comments
 (0)