A Scalable, User-Friendly Source Control System.
Go to file
Jeremy Fitzhardinge 22baa86eac mononoke: blobrepo: use chaining for Heads and Blobstore errors
Summary: Blobrepo can take any Heads or Blobstore implementation, each of which may have their own error type. Error chain doesn't support type parameters, and can only have foreign links for specific concrete types. To handle this we have a couple of placeholder errors in Blobrepo's errors which are chained onto the real underlying error.

Reviewed By: sid0

Differential Revision: D5540676

fbshipit-source-id: 9543e204754f22dfd68a04aec5a484fa85d53ff8
2017-08-02 17:43:24 -07:00
async-compression/src Initial commit 2017-07-27 18:00:19 -07:00
asyncmemo/src Initial commit 2017-07-27 18:00:19 -07:00
blobrepo/src mononoke: blobrepo: use chaining for Heads and Blobstore errors 2017-08-02 17:43:24 -07:00
blobstore Initial commit 2017-07-27 18:00:19 -07:00
bookmarks mononoke: bookmarks: add helpers for boxing Bookmarks trait objects 2017-08-02 17:43:24 -07:00
cmds Initial commit 2017-07-27 18:00:19 -07:00
eden-server/src mononoke: add #![deny(warnings)] 2017-08-02 01:01:55 -07:00
futures-ext/src Initial commit 2017-07-27 18:00:19 -07:00
heads Initial commit 2017-07-27 18:00:19 -07:00
hgcli/src Initial commit 2017-07-27 18:00:19 -07:00
hgproto/src Initial commit 2017-07-27 18:00:19 -07:00
mercurial/src Initial commit 2017-07-27 18:00:19 -07:00
mercurial-bundles/src Initial commit 2017-07-27 18:00:19 -07:00
mercurial-graphql/src Initial commit 2017-07-27 18:00:19 -07:00
mercurial-types/src Initial commit 2017-07-27 18:00:19 -07:00
server/src mononoke: bookmarks: fold ListBookmarks into Bookmarks 2017-08-02 17:43:24 -07:00
sshrelay/src Initial commit 2017-07-27 18:00:19 -07:00
tests/integration mononoke: regex-based url handling 2017-08-02 01:01:55 -07:00
CONTRIBUTING.md Initial commit 2017-07-27 18:00:19 -07:00
LICENSE Initial commit 2017-07-27 18:00:19 -07:00
README.md mention in README that Mononoke supports Mercurial 2017-07-28 14:41:37 -07:00
rustfmt.toml Initial commit 2017-07-27 18:00:19 -07:00

Mononoke

Mononoke is a next-generation server for the Mercurial source control system, meant to scale up to accepting thousands of commits every hour across millions of files. It is primarily written in the Rust programming language.

Caveat Emptor

Mononoke is still in early stages of development. We are making it available now because we plan to start making references to it from our other open source projects such as Eden.

The version that we provide on GitHub does not build yet.

This is because the code is exported verbatim from an internal repository at Facebook, and not all of the scaffolding from our internal repository can be easily extracted. The key areas where we need to shore things up are:

  • Full support for a standard cargo build.
  • Open source replacements for Facebook-internal services (blob store, logging etc).

The current goal is to get Mononoke working on Linux. Other Unix-like OSes may be supported in the future.