Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
duniter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
typescript
duniter
Merge requests
!1368
[feat] bca: add req Identities
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
[feat] bca: add req Identities
bca-identities
into
dev
Overview
0
Commits
2
Pipelines
0
Changes
32
Merged
Éloïs
requested to merge
bca-identities
into
dev
4 years ago
Overview
0
Commits
2
Pipelines
0
Changes
32
0
0
Merge request reports
Compare
dev
version 5
a5ad4922
4 years ago
version 4
8b90c630
4 years ago
version 3
05367d39
4 years ago
version 2
61988b4e
4 years ago
version 1
d3b02a3a
4 years ago
dev (base)
and
latest version
latest version
03f1f2dc
2 commits,
4 years ago
version 5
a5ad4922
3 commits,
4 years ago
version 4
8b90c630
3 commits,
4 years ago
version 3
05367d39
2 commits,
4 years ago
version 2
61988b4e
2 commits,
4 years ago
version 1
d3b02a3a
1 commit,
4 years ago
32 files
+
93
−
49
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
32
neon/native/src/wot/write_in_file.rs
+
1
−
1
View file @ 03f1f2dc
Edit in single-file editor
Open in Web IDE
Show full file
@@ -39,7 +39,7 @@ pub(crate) fn write_and_compress_bytes_in_file(
)
->
Result
<
(),
std
::
io
::
Error
>
{
let
file
=
File
::
create
(
file_path
)
?
;
let
mut
e
=
ZlibEncoder
::
new
(
file
,
compression
);
e
.write_all
(
&
datas
[
..
]
)
?
;
e
.write_all
(
datas
)
?
;
e
.finish
()
?
;
Ok
(())
Loading