Skip to content

Commit

Permalink
Re-sync with internal repository
Browse files Browse the repository at this point in the history
  • Loading branch information
facebook-github-bot authored and ahornby committed Feb 7, 2022
1 parent 44751ea commit 9728bf5
Show file tree
Hide file tree
Showing 99 changed files with 1,925 additions and 149 deletions.
23 changes: 0 additions & 23 deletions eden/fs/cli_rs/Cargo.toml

This file was deleted.

27 changes: 0 additions & 27 deletions eden/fs/cli_rs/edenfs-client/Cargo.toml

This file was deleted.

31 changes: 0 additions & 31 deletions eden/fs/cli_rs/edenfs-commands/Cargo.toml

This file was deleted.

19 changes: 0 additions & 19 deletions eden/fs/cli_rs/edenfs-utils/Cargo.toml

This file was deleted.

20 changes: 0 additions & 20 deletions eden/fs/cli_rs/edenfsctl/Cargo.toml

This file was deleted.

16 changes: 0 additions & 16 deletions eden/fs/cli_rs/stack-config/Cargo.toml

This file was deleted.

108 changes: 108 additions & 0 deletions eden/scm/lib/Cargo.toml
@@ -0,0 +1,108 @@
[patch.crates-io]
daemonize = { git = "https://github.com/krallin/daemonize", rev = "f7be28efa1b4a70e43bb37b5f4ff4d664992edca" }
lru-disk-cache = { git = "https://github.com/mozilla/sccache", rev = "033ebaae69beeb0ac04e8c35d6ff1103487bd9a3" }
prost = { git = "https://github.com/gabrielrussoc/prost", branch = "protoc-runtime" }
prost-derive = { git = "https://github.com/gabrielrussoc/prost", branch = "protoc-runtime" }
prost-types = { git = "https://github.com/gabrielrussoc/prost", branch = "protoc-runtime" }
quickcheck = { git = "https://github.com/jakoschiko/quickcheck", rev = "6ecdf5bb4b0132ce66670b4d46453aa022ea892c" }
reqwest = { git = "https://github.com/vmagro/reqwest", rev = "b08239c2b6c837321a697c5bb2be394d276b59ca" }
rustfilt = { git = "https://github.com/jsgf/rustfilt.git", rev = "8141fa7f1caee562ee8daffb2ddeca3d1f0d36e5" }
shellexpand = { git = "https://github.com/fanzeyi/shellexpand.git", rev = "179447a3f8fccd765acfd2eed15a54c716c49cfe" }
toml = { git = "https://github.com/fbsource/toml", branch = "dotted-table-0.5.8" }

[workspace]
members = [
"async-runtime",
"atomicfile",
"auth",
"backingstore",
"blackbox",
"blackbox/serde_alt",
"cats",
"checkout",
"clidispatch",
"clientinfo",
"cliparser",
"commitcloudsubscriber",
"configmodel",
"configparser",
"cpython-async",
"cpython-ext",
"dag",
"dag/bindag",
"dag/dag-types",
"dag/gitdag",
"debugtop",
"dev-logger",
"drawdag",
"eagerepo",
"edenapi",
"edenapi/ext",
"edenapi/trait",
"edenapi/types",
"edenapi/types/proc_macros",
"edenfs-client",
"encoding",
"fsinfo",
"fsyncglob",
"gitstore",
"hg-http",
"hg-metrics",
"hgcommands",
"hgcommits",
"hgtime",
"http-client",
"indexedlog",
"insta_ext",
"io",
"lz4-pyframe",
"manifest",
"manifest-tree",
"metalog",
"metrics",
"metrics/render",
"mincode",
"minibench",
"minibytes",
"mpatch",
"mpatch-sys",
"mutationstore",
"nodemap",
"nonblocking",
"pathhistory",
"pathmatcher",
"pprint",
"procinfo",
"progress/model",
"progress/render",
"radixbuf",
"refencode",
"renderdag",
"repo",
"revisionstore",
"revisionstore/types",
"revlogindex",
"runlog",
"spawn-ext",
"status",
"storemodel",
"streams",
"taggederror",
"taggederror-util",
"thrift-types",
"tracing-analyzer",
"tracing-collector",
"tracing-runtime-callsite",
"tracing-sampler",
"treestate",
"types",
"util",
"version",
"vfs",
"vlqencoding",
"workingcopy",
"xdiff",
"xdiff-sys",
"zstdelta",
"zstore",
]
13 changes: 13 additions & 0 deletions eden/scm/lib/async-runtime/Cargo.toml
@@ -0,0 +1,13 @@
# @generated by autocargo

[package]
name = "async-runtime"
version = "0.1.0"
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
edition = "2021"

[dependencies]
futures = { version = "0.3.13", features = ["async-await", "compat"] }
num_cpus = "1.11"
once_cell = "1.8"
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }
10 changes: 10 additions & 0 deletions eden/scm/lib/atomicfile/Cargo.toml
@@ -0,0 +1,10 @@
# @generated by autocargo

[package]
name = "atomicfile"
version = "0.1.0"
edition = "2021"

[dependencies]
tempfile = "3.2"
tracing = "0.1.29"
22 changes: 22 additions & 0 deletions eden/scm/lib/auth/Cargo.toml
@@ -0,0 +1,22 @@
# @generated by autocargo

[package]
name = "auth"
version = "0.1.0"
edition = "2021"

[dependencies]
anyhow = "1.0.51"
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
configmodel = { version = "0.1.0", path = "../configmodel" }
indexmap = { version = "1.8.0", features = ["rayon", "serde-1"] }
pem = "0.8"
simple_asn1 = "0.4"
thiserror = "1.0.29"
tracing = "0.1.29"
url = "2.2.2"
util = { version = "0.1.0", path = "../util" }

[dev-dependencies]
configparser = { version = "0.1.0", path = "../configparser" }
once_cell = "1.8"
30 changes: 30 additions & 0 deletions eden/scm/lib/backingstore/Cargo.toml
@@ -0,0 +1,30 @@
# @generated by autocargo

[package]
name = "backingstore"
version = "0.1.0"
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
edition = "2021"

[lib]
crate-type = ["lib", "staticlib"]

[dependencies]
anyhow = "1.0.51"
bytes = { version = "1.1", features = ["serde"] }
configparser = { version = "0.1.0", path = "../configparser" }
edenapi = { version = "0.1.0", path = "../edenapi" }
env_logger = "0.7"
libc = "0.2.98"
log = { version = "0.4.14", features = ["kv_unstable", "kv_unstable_std"] }
manifest = { version = "0.1.0", path = "../manifest" }
manifest-tree = { version = "0.1.0", path = "../manifest-tree" }
parking_lot = { version = "0.11.2", features = ["send_guard"] }
revisionstore = { version = "0.1.0", path = "../revisionstore" }
tracing = "0.1.29"
tracing-collector = { version = "0.1.0", path = "../tracing-collector" }
tracing-subscriber = { version = "0.3.3", features = ["ansi", "env-filter", "fmt", "json", "parking_lot", "registry"] }
types = { version = "0.1.0", path = "../types" }

[features]
fb = ["configparser/fb", "edenapi/fb"]
27 changes: 27 additions & 0 deletions eden/scm/lib/blackbox/Cargo.toml
@@ -0,0 +1,27 @@
# @generated by autocargo

[package]
name = "blackbox"
version = "0.1.0"
edition = "2021"

[[bench]]
name = "blackbox"
harness = false

[dependencies]
anyhow = "1.0.51"
byteorder = "1.3"
indexedlog = { version = "0.1.0", path = "../indexedlog" }
lazy_static = "1.0"
libc = "0.2.98"
parking_lot = { version = "0.11.2", features = ["send_guard"] }
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde_alt = { version = "0.1.0", path = "serde_alt" }
serde_cbor = "0.11"
serde_derive = "1.0"
serde_json = { version = "1.0.64", features = ["float_roundtrip", "unbounded_depth"] }

[dev-dependencies]
minibench = { version = "0.1.0", path = "../minibench" }
tempfile = "3.2"
11 changes: 11 additions & 0 deletions eden/scm/lib/blackbox/serde_alt/Cargo.toml
@@ -0,0 +1,11 @@
# @generated by autocargo

[package]
name = "serde_alt"
version = "0.1.0"
edition = "2021"

[lib]
test = false
doctest = false
proc-macro = true
17 changes: 17 additions & 0 deletions eden/scm/lib/cats/Cargo.toml
@@ -0,0 +1,17 @@
# @generated by autocargo

[package]
name = "cats"
version = "0.1.0"
edition = "2021"

[dependencies]
anyhow = "1.0.51"
configmodel = { version = "0.1.0", path = "../configmodel" }
indexmap = { version = "1.8.0", features = ["rayon", "serde-1"] }
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde_derive = "1.0"
serde_json = { version = "1.0.64", features = ["float_roundtrip", "unbounded_depth"] }
thiserror = "1.0.29"
tracing = "0.1.29"
util = { version = "0.1.0", path = "../util" }

0 comments on commit 9728bf5

Please sign in to comment.