This repository was archived by the owner on Sep 21, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +14
-22
lines changed Expand file tree Collapse file tree 6 files changed +14
-22
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " whitenoise_ffi"
3- version = " 0.1.3 "
3+ version = " 0.2.0 "
44authors = [
" OpenDP-WhiteNoise <[email protected] >" ]
55description = " A wrapper library for interfacing with the Whitenoise over ffi."
66readme = " README.md"
@@ -17,11 +17,11 @@ indexmap = "1.4.0"
1717
1818[dependencies .whitenoise_validator ]
1919path = " ../validator-rust/"
20- version = " 0.1.3 "
20+ version = " 0.2.0 "
2121
2222[dependencies .whitenoise_runtime ]
2323path = " ../runtime-rust/"
24- version = " 0.1.3 "
24+ version = " 0.2.0 "
2525optional = true
2626default-features = false
2727
Original file line number Diff line number Diff line change 11[package ]
22name = " whitenoise_runtime"
3- version = " 0.1.3 "
3+ version = " 0.2.0 "
44authors = [
" OpenDP-WhiteNoise <[email protected] >" ]
55description = " A library of algorithms for differentially private data analysis."
66readme = " README.md"
@@ -33,13 +33,13 @@ noisy_float = "0.1.12"
3333 optional = true
3434
3535 [dependencies .gmp-mpfr-sys ]
36- version = " 1.2.4 "
36+ version = " =1.3.1 "
3737 default-features = false
3838 features = [" mpfr" ]
3939 optional = true
4040
4141 [dependencies .whitenoise_validator ]
42- version = " 0.1.3 "
42+ version = " 0.2.0 "
4343 path = " ../validator-rust/"
4444
4545[features ]
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
2- set -e -x
2+ # set -e -x
3+
4+ # gmp-mpfr-sys requires nightly to build documentation
5+ rustup install nightly
36
47# Rust documentation
58# current working directory must be in `whitenoise-core` root.
6- doc_command=" cargo doc --verbose --target-dir=docs --manifest-path=ffi-rust/Cargo.toml"
9+ doc_command=" cargo +nightly doc --verbose --target-dir=docs --manifest-path=ffi-rust/Cargo.toml"
710
811if [[ " ${WN_USE_VULNERABLE_NOISE:- false} " != " false" ]]; then
912 doc_command+=" --no-default-features --features use-runtime"
1013elif [[ " ${WN_USE_SYSTEM_LIBS:- false} " != " false" ]]; then
1114 doc_command+=" --features use-system-libs"
1215fi
1316
14- eval " $doc_command "
17+ eval " $doc_command " ;
1518
1619rm -rf docs/debug;
Original file line number Diff line number Diff line change 22import os
33
44self_dir = os .path .dirname (__file__ )
5- config_path = os .path .join (self_dir , "update_version_config .toml" )
5+ config_path = os .path .join (self_dir , "update_version .toml" )
66
77with open (config_path , 'r' ) as config_file :
88 config = tomlkit .loads (config_file .read ())
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11[package ]
22name = " whitenoise_validator"
3- version = " 0.1.3 "
3+ version = " 0.2.0 "
44authors = [
" OpenDP-WhiteNoise <[email protected] >" ]
55description = " A library for validating whether or not an analysis is differentially private."
66readme = " README.md"
You can’t perform that action at this time.
0 commit comments