Skip to content

Commit

Permalink
rust/shed/hostname: rename hostname dependency to unbreak doctests (#15)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebookexperimental/rust-shed#15

With the update from rustc 1.44 to 1.47 the doctests started to break when building a crate that depends on a different crate of the same name, see this: rust-lang/cargo#6819

This diff also removes the TravisCI build as it was broken and unused for some time.

Reviewed By: krallin

Differential Revision: D24390815

fbshipit-source-id: fa9c78ef394640afbf8c419f8276bbf339960406
  • Loading branch information
lukaspiatkowski authored and facebook-github-bot committed Oct 19, 2020
1 parent fde21ba commit 87db936
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 26 deletions.
24 changes: 0 additions & 24 deletions build/fbcode_builder/specs/rust_shed.py

This file was deleted.

2 changes: 1 addition & 1 deletion eden/mononoke/mercurial/mutation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async-trait = "0.1.29"
futures = { version = "0.3.5", features = ["async-await", "compat"] }
serde_json = "1.0"
slog = { version = "2.5", features = ["max_level_debug"] }
smallvec = { version = "=1.4.1", features = [ "serde", "specialization", "union" ] }
smallvec = { version = "1.4.2", features = [ "serde", "specialization", "union" ] }

[dev-dependencies]
mercurial_types-mocks = { path = "../types/mocks" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/mononoke_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ rand = { version = "0.7", features = ["small_rng"] }
regex = "1.3.7"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_derive = "1.0"
smallvec = { version = "=1.4.1", features = [ "serde", "specialization", "union" ] }
smallvec = { version = "1.4.2", features = [ "serde", "specialization", "union" ] }
thiserror = "1.0"

[dev-dependencies]
Expand Down

0 comments on commit 87db936

Please sign in to comment.