A Scalable, User-Friendly Source Control System.
Go to file
Siddharth Agarwal c6d65b47b0 wirepack: support for encoding data entries
Summary:
This is very similar to the support for encoding history entries in the
previous patch. The NULL_HASH wart makes it a little annoying to deal with.

We need to be able to compute how many bytes a delta has efficiently -- add a
function and tests for that as well.

Reviewed By: jsgf

Differential Revision: D6589117

fbshipit-source-id: e3a05672e1e8f455a2e95b30418468d1e3254407
2018-01-01 17:52:36 -08:00
async-compression/src mercurial_bundle: bugfix for prematurely closing Compression AsyncRead 2017-12-13 04:51:43 -08:00
asyncmemo/src asyncmemo: use spawn() in tests 2017-12-22 03:41:22 -08:00
blobrepo/src Remove Error, GetBlob and PutBlob from BlobStore 2017-12-11 07:05:53 -08:00
blobstore Remove Error, GetBlob and PutBlob from BlobStore 2017-12-11 07:05:53 -08:00
bookmarks rust: failure cleanup pass 2017-12-07 14:10:17 -08:00
bytes-ext/src thrift: extract SizeCounter to a separate crate 2018-01-01 17:52:35 -08:00
cmds mononoke: add --inmemory-logs-capacity option 2017-12-13 06:58:24 -08:00
eden_server/src mononoke: add treenode_simple method 2017-12-15 10:37:42 -08:00
futures-ext/src Update to Rust 1.21 2017-11-29 15:21:41 -08:00
heads rust: failure cleanup pass 2017-12-07 14:10:17 -08:00
hgcli mononoke: convert hgcli to failure 2017-12-07 14:10:17 -08:00
hgproto rust: failure cleanup pass 2017-12-07 14:10:17 -08:00
hooks/src rust: failure cleanup pass 2017-12-07 14:10:17 -08:00
linknodes mercurial-types: allow converting strs to MPaths and RepoPaths 2017-12-18 22:08:37 -08:00
mercurial/src mononoke: add --inmemory-logs-capacity option 2017-12-13 06:58:24 -08:00
mercurial-bundles/src wirepack: support for encoding data entries 2018-01-01 17:52:36 -08:00
mercurial-types wirepack: support for verifying data entries 2017-12-18 22:08:37 -08:00
metaconfig/src rust: failure cleanup pass 2017-12-07 14:10:17 -08: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 rust: mass convert scm/mononoke/... to use failure 2017-12-05 18:11:13 -08:00
revset/src rust: failure cleanup pass 2017-12-07 14:10:17 -08:00
server/src rust: failure cleanup pass 2017-12-07 14:10:17 -08:00
sshrelay/src Initial commit 2017-07-27 18:00:19 -07:00
storage rust: failure cleanup pass 2017-12-07 14:10:17 -08:00
tests mononoke: add treenode_simple method 2017-12-15 10:37:42 -08:00
vfs/src rust: failure cleanup pass 2017-12-07 14:10:17 -08: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.