parent
52de4257fa
commit
2706fb3874
|
@ -1,3 +1,12 @@
|
|||
# 0.4.3 - 2022-02-21
|
||||
|
||||
- Added riscv64 support (#14)
|
||||
|
||||
# 0.4.2 - 2021-08-09
|
||||
|
||||
- Fixed prof not working under certain condition (#9) (#12)
|
||||
- Updated paste to 1 (#11)
|
||||
|
||||
# 0.4.1 - 2020-11-16
|
||||
|
||||
- Updated jemalloc to fix deadlock during initialization
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "tikv-jemallocator"
|
||||
# Make sure to update the version in the README as well:
|
||||
version = "0.4.1"
|
||||
version = "0.4.3"
|
||||
authors = [
|
||||
"Alex Crichton <alex@alexcrichton.com>",
|
||||
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
|
||||
|
|
|
@ -64,6 +64,8 @@
|
|||
//! }
|
||||
//! }
|
||||
//! ```
|
||||
// TODO: rename the following lint on next minor bump
|
||||
#![allow(renamed_and_removed_lints)]
|
||||
#![deny(missing_docs, broken_intra_doc_links)]
|
||||
#![cfg_attr(not(feature = "use_std"), no_std)]
|
||||
#![cfg_attr(feature = "cargo-clippy", allow(clippy::module_name_repetitions))]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "tikv-jemalloc-sys"
|
||||
version = "0.4.2+5.2.1-patched.2"
|
||||
version = "0.4.3+5.2.1-patched.2"
|
||||
authors = [
|
||||
"Alex Crichton <alex@alexcrichton.com>",
|
||||
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
|
||||
|
|
|
@ -45,6 +45,8 @@
|
|||
feature = "cargo-clippy",
|
||||
allow(clippy::cast_possible_truncation, clippy::cast_possible_wrap)
|
||||
)]
|
||||
// TODO: rename the following lint on next minor bump
|
||||
#![allow(renamed_and_removed_lints)]
|
||||
#![deny(missing_docs, broken_intra_doc_links)]
|
||||
|
||||
use libc::{c_char, c_int, c_uint, c_void, size_t};
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
//! and is suitable both as a memory allocator and as a global allocator.
|
||||
|
||||
#![cfg_attr(feature = "alloc_trait", feature(allocator_api))]
|
||||
// TODO: rename the following lint on next minor bump
|
||||
#![allow(renamed_and_removed_lints)]
|
||||
#![deny(missing_docs, broken_intra_doc_links)]
|
||||
#![no_std]
|
||||
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#![allow(bad_style, improper_ctypes, dead_code, unused_imports)]
|
||||
// TODO: remove systest
|
||||
#![allow(bad_style, improper_ctypes, dead_code, unused_imports, deref_nullptr)]
|
||||
#![allow(clippy::all)]
|
||||
|
||||
use std::alloc::System;
|
||||
|
||||
|
|
Loading…
Reference in New Issue