mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 14:34:34 +03:00
5f0181f48c
Summary: D22381744 updated the version of `futures` in third-party/rust to 0.3.5, but did not regenerate the autocargo-managed Cargo.toml files in the repo. Although this is a semver-compatible change (and therefore should not break anything), it means that affected projects would see changes to all of their Cargo.toml files the next time they ran `cargo autocargo`. Reviewed By: dtolnay Differential Revision: D22403809 fbshipit-source-id: eb1fdbaf69c99549309da0f67c9bebcb69c1131b
26 lines
760 B
TOML
26 lines
760 B
TOML
[package]
|
|
name = "tunables_structs"
|
|
edition = "2018"
|
|
version = "0.1.0"
|
|
authors = ['Facebook']
|
|
license = "GPLv2+"
|
|
include = ["thrift_lib.rs"]
|
|
build = "thrift_build.rs"
|
|
|
|
[lib]
|
|
path = "thrift_lib.rs"
|
|
|
|
[build-dependencies]
|
|
thrift_compiler = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
|
|
|
|
[dependencies]
|
|
codegen_includer_proc_macro = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
|
|
fbthrift = { git = "https://github.com/facebook/fbthrift.git", branch = "master" }
|
|
anyhow = "1.0"
|
|
async-trait = "0.1.29"
|
|
futures = { version = "0.3.5", features = ["async-await", "compat"] }
|
|
lazy_static = "1.0"
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_derive = "1.0"
|
|
thiserror = "1.0"
|