sapling/eden/hg-server
Thomas Orozco 0d632d8278 autocargo: ctp: depend on pxl instead of re-declaring its crates
Summary:
You can't run Autocargo right now, it fails with:

```
Error: File CargoTomlPath { file: PathInFbcode("configerator/structs/data_access_policies/upf/eval/Cargo.toml"), dir: PathInFbcode("configerator/structs/data_access_policies/upf/eval") } is covered by both ctp and pxl projects
```

This is affecting me (on Buck2) since some of our dependencies use Autocargo
for their Cargo.tomls and those are now missing some dependencies (notably,
`below` needs `nix`). This also affects people trying to vendor crates:

https://fb.workplace.com/groups/rust.language/permalink/7625318880849994/
https://fb.workplace.com/groups/rust.language/permalink/7577471608968055/

This diff fixes it, and regenerates Cargo.tomls as a result.

Note: I'm not sure exactly what "pxl" is, but it seems to be owned by the team working on data access so that's a better home for that crate than ctp.

Reviewed By: ahornby

Differential Revision: D33428045

fbshipit-source-id: f3feab3ae04069672040423c145c69a58445ef96
2022-01-05 06:26:54 -08:00
..
contrib server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
distutils_rust server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
doc server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
edenscm fix bug in long commands logging where FFI boundary expects int and gets float 2021-11-15 08:11:21 -08:00
edenscmnative Upgrade to parking_log 0.11.2 and add feature send_guard 2021-12-15 14:37:44 -08:00
exec third-party/rust: Update anyhow from 1.0.48 to 1.0.51 2021-11-29 14:14:17 -08:00
hgcache_size_logger server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
i18n server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
lib autocargo: ctp: depend on pxl instead of re-declaring its crates 2022-01-05 06:26:54 -08:00
newdoc server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
pystubs server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
slides server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
tests Update cpython to 0.7 2021-11-12 14:32:26 -08:00
.editorconfig server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
.flake8 server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
.gitignore server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
COPYING server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
gen_version.py server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
hgeditor server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
Makefile server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
README.rst server: copy hg to a new hg-server directory 2021-04-09 10:09:06 -07:00
setup3.py lib: remove unused C code 2021-04-29 14:45:12 -07:00
setup.py lib: remove unused C code 2021-04-29 14:45:12 -07:00

Mercurial
=========

Mercurial is a fast, easy to use, distributed revision control tool
for software developers.

Basic install::

 $ make            # see install targets
 $ make install    # do a system-wide install
 $ hg debuginstall # sanity-check setup
 $ hg              # see help

Running without installing::

 $ make local      # build for inplace usage
 $ ./hg --version  # should show the latest version

See https://mercurial-scm.org/ for detailed installation
instructions, platform-specific notes, and Mercurial user information.