Remove crossbeam-channel feature from notify dependency (https://github.com/notify-rs/notify/issues/380)

pull/195/head
Chip Senkbeil 12 months ago
parent b163094d49
commit 009996b554
No known key found for this signature in database
GPG Key ID: 35EF1F8EC72A4131

@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
### Removed
- `crossbeam-channel` dependency removed from notify by disabling its feature
in order to avoid a `tokio::spawn` issue (https://github.com/notify-rs/notify/issues/380)
## [0.20.0-alpha.7] ## [0.20.0-alpha.7]
### Added ### Added

2
Cargo.lock generated

@ -1965,14 +1965,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d9ba6c734de18ca27c8cef5cd7058aa4ac9f63596131e4c7e41e579319032a2" checksum = "4d9ba6c734de18ca27c8cef5cd7058aa4ac9f63596131e4c7e41e579319032a2"
dependencies = [ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
"crossbeam-channel",
"filetime", "filetime",
"fsevent-sys", "fsevent-sys",
"inotify", "inotify",
"kqueue", "kqueue",
"libc", "libc",
"mio", "mio",
"serde",
"walkdir", "walkdir",
"windows-sys 0.45.0", "windows-sys 0.45.0",
] ]

@ -16,7 +16,7 @@ distant-core = { version = "=0.20.0-alpha.7", path = "../distant-core" }
grep = "0.2.12" grep = "0.2.12"
ignore = "0.4.20" ignore = "0.4.20"
log = "0.4.18" log = "0.4.18"
notify = { version = "6.0.0", features = ["serde"] } notify = { version = "6.0.0", default-features = false, features = ["macos_fsevent"] }
num_cpus = "1.15.0" num_cpus = "1.15.0"
portable-pty = "0.8.1" portable-pty = "0.8.1"
rand = { version = "0.8.5", features = ["getrandom"] } rand = { version = "0.8.5", features = ["getrandom"] }

Loading…
Cancel
Save