Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
* either 1.4 -> 1.5
* num_cpus 1.8.0 -> 1.9
* lazy_static 1.1.0 -> 1.2
* syn 0.15.22 -> 0.15.25
  • Loading branch information
taiki-e committed Jan 17, 2019
1 parent 43f2cd2 commit 993fc95
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion futures-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ std = ["either/use_std"]
nightly = []

[dependencies]
either = { version = "1.4", default-features = false, optional = true }
either = { version = "1.5", default-features = false, optional = true }

[dev-dependencies]
futures-preview = { path = "../futures", version = "=0.3.0-alpha.12" }
4 changes: 2 additions & 2 deletions futures-executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ default = ["std"]
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false}
futures-util-preview = { path = "../futures-util", version = "=0.3.0-alpha.12", default-features = false}
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12", default-features = false}
num_cpus = { version = "1.8.0", optional = true }
lazy_static = { version = "1.1.0", optional = true }
num_cpus = { version = "1.9", optional = true }
lazy_static = { version = "1.2", optional = true }
pin-utils = "0.1.0-alpha.4"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion futures-select-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ std = []
proc-macro2 = "0.4"
proc-macro-hack = "0.5.3"
quote = "0.6"
syn = { version = "0.15.22", features = ["full"] }
syn = { version = "0.15.25", features = ["full"] }
2 changes: 1 addition & 1 deletion futures-sink/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ std = ["either/use_std", "futures-core-preview/std", "futures-channel-preview/st
default = ["std"]

[dependencies]
either = { version = "1.4", default-features = false, optional = true }
either = { version = "1.5", default-features = false, optional = true }
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12", default-features = false }
2 changes: 1 addition & 1 deletion futures-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha
futures-io-preview = { path = "../futures-io", version = "=0.3.0-alpha.12", default-features = false }
futures-sink-preview = { path = "../futures-sink", version = "=0.3.0-alpha.12", default-features = false}
futures-select-macro-preview = { path = "../futures-select-macro", version = "=0.3.0-alpha.12", default-features = false }
either = { version = "1.4", default-features = false }
either = { version = "1.5", default-features = false }
proc-macro-hack = "0.5"
proc-macro-nested = "0.1.2"
rand = { version = "0.5.5", optional = true }
Expand Down

0 comments on commit 993fc95

Please sign in to comment.