forbid unsafe
This commit is contained in:
parent
783948446c
commit
ff2f5d9ec2
|
@ -1,4 +1,5 @@
|
|||
[![Status](https://travis-ci.org/rust-bitcoin/rust-bitcoin.png?branch=master)](https://travis-ci.org/rust-bitcoin/rust-bitcoin)
|
||||
[![Safety Dance](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/)
|
||||
|
||||
# Rust Bitcoin Library
|
||||
|
||||
|
|
|
@ -41,6 +41,8 @@
|
|||
#![deny(non_snake_case)]
|
||||
#![deny(unused_mut)]
|
||||
#![deny(missing_docs)]
|
||||
#![forbid(unsafe_code)]
|
||||
|
||||
|
||||
extern crate bitcoin_bech32;
|
||||
extern crate bitcoin_hashes;
|
||||
|
|
Loading…
Reference in New Issue