A Scalable, User-Friendly Source Control System.
Go to file
Simon Farnsworth 9013d80b99 Add tests to confirm that NotReady doesn't panic
Summary:
lukaspiatkowski pointed out that I don't test that an input that's NotReady doesn't hit
the panic cases. Add tests to check that this works.

Reviewed By: jsgf

Differential Revision: D5881789

fbshipit-source-id: 6357262c070c8c6a524d7bedeb1966843bd7612b
2017-09-21 16:25:46 -07:00
async-compression/src Initial commit 2017-07-27 18:00:19 -07:00
asyncmemo/src rust: asyncmemo: add failure test 2017-08-29 12:36:18 -07:00
blobrepo/src mononoke: support rocksdb blobstore in eden server 2017-09-21 08:25:23 -07:00
blobstore mononoke: blobstore: use ! for memblob errors 2017-09-19 16:11:54 -07:00
bookmarks mononoke: bookmarks: use ! for membookmarks errors 2017-09-19 16:11:54 -07:00
cmds use BlobHash in RawNodeBlob 2017-09-18 00:35:52 -07:00
eden-server/src mononoke: support rocksdb blobstore in eden server 2017-09-21 08:25:23 -07:00
futures-ext/src rust: futures-ext: use ! for errors that can't happen 2017-09-19 16:11:54 -07:00
heads mononoke: heads: use ! for memheads errors 2017-09-19 16:11:54 -07:00
hgcli/src Initial commit 2017-07-27 18:00:19 -07:00
hgproto/src update and pull in uuid + subprocess 2017-09-08 17:05:38 -07:00
hooks/src add a prototype to implement hooks 2017-09-05 22:52:51 -07:00
mercurial/src Add indicatif crate to rust-crates-io 2017-09-18 14:21:21 -07:00
mercurial-bundles/src update and pull in uuid + subprocess 2017-09-08 17:05:38 -07:00
mercurial-graphql/src mononoke: change Path implementation 2017-08-10 05:24:42 -07:00
mercurial-types remove BoxFuture and BoxStream from mercurial-types-mocks 2017-09-18 12:07:49 -07:00
metaconfig/src metaconfig: add simple parsing of content of a repo config using Serde and Toml 2017-09-12 04:05:14 -07:00
py_tar_utils move tar_utils.py from update_rust into an open sourceable location 2017-09-14 13:52:23 -07:00
repoinfo/src update and pull in uuid + subprocess 2017-09-08 17:05:38 -07:00
revset/src Add tests to confirm that NotReady doesn't panic 2017-09-21 16:25:46 -07:00
server/src server: remove the --dry option 2017-09-20 02:57:12 -07:00
sshrelay/src Initial commit 2017-07-27 18:00:19 -07:00
tests mononoke: support rocksdb blobstore in eden server 2017-09-21 08:25:23 -07:00
vfs/src vfs: add Virtual File System for manifest 2017-09-12 04:05:14 -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 config for rustfmt-nightly 0.2.6 2017-09-18 10:50:27 -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.