Skip to content

Commit

Permalink
Loosen dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gyscos committed Jul 4, 2020
1 parent 945fe1a commit adec5ae
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 29 deletions.
32 changes: 16 additions & 16 deletions cursive-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,39 +21,39 @@ repository = "gyscos/cursive"
repository = "gyscos/cursive"

[dependencies]
enum-map = "0.6.0"
enumset = "1.0.0"
log = "0.4.8"
owning_ref = "0.4.0"
unicode-segmentation = "1.3.0"
unicode-width = "0.1.5"
xi-unicode = "0.2.0"
libc = "0.2.60"
crossbeam-channel = "0.4.0"
enum-map = "0.6"
enumset = "1"
log = "0.4"
owning_ref = "0.4"
unicode-segmentation = "1"
unicode-width = "0.1"
xi-unicode = "0.2"
libc = "0.2"
crossbeam-channel = "0.4"
lazy_static = "1"
chrono = "0.4.7"
chrono = "0.4"
ahash = "0.4"

[dependencies.toml]
optional = true
version = "0.5.1"
version = "0.5"

[dependencies.num]
default-features = false
version = "0.3.0"
version = "0.3"

[dependencies.pulldown-cmark]
default-features = false
optional = true
version = "0.7.0"
version = "0.7"

[target.'cfg(unix)'.dependencies]
signal-hook = "0.1"

[dev-dependencies]
rand = "0.7.0"
pretty-bytes = "0.2.2"
atty = "0.2.13"
rand = "0.7"
pretty-bytes = "0.2"
atty = "0.2"

[features]
markdown = ["pulldown-cmark"]
Expand Down
26 changes: 13 additions & 13 deletions cursive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ features = ["unstable_scroll", "markdown", "toml"]

[dependencies]
cursive_core = { path = "../cursive-core", version="0.1.1-alpha.0" }
crossbeam-channel = "0.4.0"
cfg-if = "0.1.9"
enumset = "1.0.0"
unicode-segmentation = "1.3.0"
unicode-width = "0.1.5"
crossbeam-channel = "0.4"
cfg-if = "0.1"
enumset = "1"
unicode-segmentation = "1"
unicode-width = "0.1"
lazy_static = "1"
libc = "0.2.60"
libc = "0.2"
term_size = { version = "0.3", optional = true }
maplit = { version = "1.0", optional = true }
log = "0.4.8"
log = "0.4"
ahash = "0.4"

[dependencies.bear-lib-terminal]
optional = true
version = "2.0.0"
version = "2"

[dependencies.ncurses]
features = ["wide"]
Expand All @@ -40,20 +40,20 @@ version = "5.99.0"
[dependencies.pancurses]
features = ["wide"]
optional = true
version = "0.16.1"
version = "0.16"

[dependencies.termion]
optional = true
version = "1.5.3"
version = "1"

[dependencies.crossterm]
optional = true
version = "0.17"

[dev-dependencies]
rand = "0.7.0"
pretty-bytes = "0.2.2"
atty = "0.2.13"
rand = "0.7"
pretty-bytes = "0.2"
atty = "0.2"

[features]
blt-backend = ["bear-lib-terminal"]
Expand Down

0 comments on commit adec5ae

Please sign in to comment.