-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This reverts commit 0ca33be. It turned out to be a bad idea to apply major code style changes while having unmerged PRs. Specifically, in #51 I hit the all file long merge conflicts where it's impossible to manually track important changes and merge them. Applying the new code style to the PR itself also didn't help — git failed to correctly handle the changed parts and this led to even more merge conflicts. So, the plan is to revert the code style changes, apply the pending PRs, and reintroduce the code style changes.
- Loading branch information
1 parent
b142c9e
commit fd8a99f
Showing
129 changed files
with
42,776 additions
and
41,312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
fn main() { | ||
prost_build::compile_protos( | ||
&[ | ||
"src/schema/keys.proto", | ||
"src/schema/noise.proto", | ||
"src/schema/webrtc.proto", | ||
"src/protocol/libp2p/schema/identify.proto", | ||
"src/protocol/libp2p/schema/kademlia.proto", | ||
"src/protocol/libp2p/schema/bitswap.proto", | ||
], | ||
&["src"], | ||
) | ||
.unwrap(); | ||
prost_build::compile_protos( | ||
&[ | ||
"src/schema/keys.proto", | ||
"src/schema/noise.proto", | ||
"src/schema/webrtc.proto", | ||
"src/protocol/libp2p/schema/identify.proto", | ||
"src/protocol/libp2p/schema/kademlia.proto", | ||
"src/protocol/libp2p/schema/bitswap.proto", | ||
], | ||
&["src"], | ||
) | ||
.unwrap(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.