mirror of
https://github.com/facebookincubator/mvfst.git
synced 2025-04-18 17:24:03 +03:00
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
19 lines
437 B
TOML
19 lines
437 B
TOML
[package]
|
|
name = "startccp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "startccp"
|
|
crate-type = ["staticlib", "cdylib"]
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
clap = "2.32"
|
|
portus = { git = "https://github.com/ccp-project/portus", rev = "ef2ddb674785e1f0c0869fe648896ac866659ab3" }
|
|
portus_export = { git = "https://github.com/ccp-project/portus", rev = "ef2ddb674785e1f0c0869fe648896ac866659ab3" }
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|