mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-09 19:00:46 +00:00
Update dependencies
This commit is contained in:
parent
9ca3f50bd6
commit
7053d6a78f
15
CHANGELOG.md
15
CHANGELOG.md
@ -1,5 +1,20 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## Next version: 0.13.0
|
||||||
|
|
||||||
|
### Breaking changes
|
||||||
|
|
||||||
|
- Update `enum-map` fron 0.5 to 0.6
|
||||||
|
|
||||||
|
### API updates
|
||||||
|
|
||||||
|
- Add `Effect::Strikethrough` (not supported on ncurses)
|
||||||
|
- Add `ListView::remove_child`
|
||||||
|
- Replace `xursive::CbFunc` with `Box<FnOnce>`
|
||||||
|
- Add `ScrollView::{inner_size, is_as_{bottom, top, left, right} }`
|
||||||
|
- Add getters for current value in `SliderView`
|
||||||
|
- More fields made public in `cursive::logger`
|
||||||
|
|
||||||
## 0.12.0
|
## 0.12.0
|
||||||
|
|
||||||
### Breaking changes
|
### Breaking changes
|
||||||
|
34
Cargo.toml
34
Cargo.toml
@ -22,21 +22,21 @@ repository = "gyscos/cursive"
|
|||||||
repository = "gyscos/cursive"
|
repository = "gyscos/cursive"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
enum-map = "0.5"
|
enum-map = "0.6.0"
|
||||||
enumset = "0.4"
|
enumset = "0.4.0"
|
||||||
log = "0.4.6"
|
log = "0.4.8"
|
||||||
owning_ref = "0.4.0"
|
owning_ref = "0.4.0"
|
||||||
toml = "0.5.0"
|
toml = "0.5.1"
|
||||||
unicode-segmentation = "1.2.1"
|
unicode-segmentation = "1.3.0"
|
||||||
unicode-width = "0.1.5"
|
unicode-width = "0.1.5"
|
||||||
xi-unicode = "0.1.0"
|
xi-unicode = "0.2.0"
|
||||||
libc = "0.2.51"
|
libc = "0.2.60"
|
||||||
term_size = { version = "0.3.1", optional = true }
|
term_size = { version = "0.3.1", optional = true }
|
||||||
crossbeam-channel = "0.3.8"
|
crossbeam-channel = "0.3.9"
|
||||||
lazy_static = "1.3.0"
|
lazy_static = "1.3.0"
|
||||||
chrono = "0.4.6"
|
chrono = "0.4.7"
|
||||||
hashbrown = "0.3"
|
hashbrown = "0.5.0"
|
||||||
cfg-if = "0.1.7"
|
cfg-if = "0.1.9"
|
||||||
|
|
||||||
[dependencies.num]
|
[dependencies.num]
|
||||||
default-features = false
|
default-features = false
|
||||||
@ -63,23 +63,23 @@ version = "0.16.1"
|
|||||||
[dependencies.pulldown-cmark]
|
[dependencies.pulldown-cmark]
|
||||||
default-features = false
|
default-features = false
|
||||||
optional = true
|
optional = true
|
||||||
version = "0.5"
|
version = "0.5.3"
|
||||||
|
|
||||||
[dependencies.termion]
|
[dependencies.termion]
|
||||||
optional = true
|
optional = true
|
||||||
version = "1.5.1"
|
version = "1.5.3"
|
||||||
|
|
||||||
[dependencies.crossterm]
|
[dependencies.crossterm]
|
||||||
optional = true
|
optional = true
|
||||||
version = "0.9.2"
|
version = "0.10.1"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
signal-hook = "0.1.8"
|
signal-hook = "0.1.10"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand = "0.6.5"
|
rand = "0.7.0"
|
||||||
pretty-bytes = "0.2.2"
|
pretty-bytes = "0.2.2"
|
||||||
atty = "0.2.11"
|
atty = "0.2.13"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
blt-backend = ["bear-lib-terminal"]
|
blt-backend = ["bear-lib-terminal"]
|
||||||
|
Loading…
Reference in New Issue
Block a user