Commit Graph

6 Commits

Author SHA1 Message Date
David Tolnay
9dea6e43a8 third-party/rust: Update anyhow from 1.0.48 to 1.0.51
Reviewed By: aaronabramov

Differential Revision: D32699872

fbshipit-source-id: 4ae6ae6916e0318c2b05c904c1436151de9c5a23
2021-11-29 14:14:17 -08:00
David Tolnay
8b29b9f7bb third-party/rust: Update anyhow from 1.0.44 to 1.0.47
Summary:
This release helps catch places that the `anyhow!` or `bail!` macros are invoked with a missing fmt argument, such as:

```
-     anyhow!("unsupported redirect operation {:?}")
+     anyhow!("unsupported redirect operation {:?}", op)
```

All instances of this in fbcode were fixed in D32266567 (2f440eac7e).

Reviewed By: wqfish

Differential Revision: D32564287

fbshipit-source-id: e9cf5a1376e6c83343de3f3c6ba2925d88334a30
2021-11-19 15:57:13 -08:00
David Tolnay
e6c5e4fcc6 Even more 2021 edition Cargo.tomls
Summary: Generated by `rg -g Cargo.toml 'edition = "2018"' -l | xargs sed 's/edition = "2018"/edition = "2021"/' -i`. I guess these are all the handwritten Cargo.tomls. I confirmed that `cargo autocargo` does not revert any of the changed files in this diff.

Reviewed By: aaronabramov

Differential Revision: D31832704

fbshipit-source-id: ac4ea947ae80d25911fa9eedf2951eeead9d5636
2021-10-21 19:39:32 -07:00
Grace Ku
732ed6c604 Apply attributes for things the compiler thinks are unused
Summary: The compiler thinks they are unused, but they are actually used, just behind attributes.

Reviewed By: fanzeyi

Differential Revision: D31804925

fbshipit-source-id: d84c3cf103317d2fd41408e478bc52a41b2e8fa6
2021-10-20 15:02:51 -07:00
Grace Ku
d28a9f4ccd Fix unused import warnings
Summary: See title

Reviewed By: fanzeyi

Differential Revision: D31800345

fbshipit-source-id: 6fdd2be14240d3a01376742d097edbdd9ade97d8
2021-10-20 15:02:51 -07:00
Durham Goode
98d9269874 server: copy hg to a new hg-server directory
Summary:
Create a fork of the Mercurial code that we can use to build server
rpms. The hg servers will continue to exist for a few more months while we move
the darkstorm and ediscovery use cases off them. In the mean time, we want to
start making breaking changes to the client, so let's create a stable copy of
the hg code to produce rpms for the hg servers.

The fork is based off c7770c78d, the latest hg release.

This copies the files as is, then adds some minor tweaks to get it to build:
- Disables some lint checks that appear to be bypassed by path
- sed replace eden/scm with eden/hg-server
- Removed a dependency on scm/telemetry from the edenfs-client tests since
  scm/telemetry pulls in the original eden/scm/lib/configparser which conflicts
  with the hg-server conflict parser.

allow-large-files

Reviewed By: quark-zju

Differential Revision: D27632557

fbshipit-source-id: b2f442f4ec000ea08e4d62de068750832198e1f4
2021-04-09 10:09:06 -07:00