Skip to content

Commit ab1a651

Browse files
taplo fmt
1 parent 6873d28 commit ab1a651

File tree

6 files changed

+27
-23
lines changed

6 files changed

+27
-23
lines changed

Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
[workspace]
2-
members = ["jemallocator", "jemallocator-global", "jemalloc-ctl", "jemalloc-sys"]
2+
members = [
3+
"jemallocator",
4+
"jemallocator-global",
5+
"jemalloc-ctl",
6+
"jemalloc-sys",
7+
]

jemalloc-ctl/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name = "tikv-jemalloc-ctl"
33
version = "0.6.0"
44
authors = [
5-
"Steven Fackler <[email protected]>",
6-
"Gonzalo Brito Gadeschi <[email protected]>",
7-
"The TiKV Project Developers",
5+
"Steven Fackler <[email protected]>",
6+
"Gonzalo Brito Gadeschi <[email protected]>",
7+
"The TiKV Project Developers",
88
]
99
license = "MIT/Apache-2.0"
1010
readme = "README.md"

jemalloc-ctl/rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
max_width = 79
1+
max_width = 79

jemalloc-sys/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name = "tikv-jemalloc-sys"
33
version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
44
authors = [
5-
"Alex Crichton <[email protected]>",
6-
"Gonzalo Brito Gadeschi <[email protected]>",
7-
"The TiKV Project Developers",
5+
"Alex Crichton <[email protected]>",
6+
"Gonzalo Brito Gadeschi <[email protected]>",
7+
"The TiKV Project Developers",
88
]
99
build = "build.rs"
1010
links = "jemalloc"
@@ -28,8 +28,8 @@ maintenance = { status = "actively-developed" }
2828

2929
[lints.rust]
3030
unexpected_cfgs = { level = "allow", check-cfg = [
31-
'cfg(jemallocator_docs)',
32-
'cfg(prefixed)',
31+
'cfg(jemallocator_docs)',
32+
'cfg(prefixed)',
3333
] }
3434

3535
[dependencies]
@@ -43,11 +43,11 @@ default = ["background_threads_runtime_support"]
4343
profiling = []
4444
debug = []
4545
background_threads_runtime_support = []
46-
background_threads = [ "background_threads_runtime_support" ]
46+
background_threads = ["background_threads_runtime_support"]
4747
stats = []
4848
unprefixed_malloc_on_supported_platforms = []
4949
disable_initial_exec_tls = []
5050
disable_cache_oblivious = []
5151

5252
[package.metadata.docs.rs]
53-
rustdoc-args = [ "--cfg", "jemallocator_docs" ]
53+
rustdoc-args = ["--cfg", "jemallocator_docs"]

jemallocator-global/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name = "tikv-jemallocator-global"
33
# Make sure to update the version in the readme as well:
44
version = "0.6.0"
55
authors = [
6-
"Gonzalo Brito Gadeschi <[email protected]>",
7-
"The TiKV Project Developers",
6+
"Gonzalo Brito Gadeschi <[email protected]>",
7+
"The TiKV Project Developers",
88
]
99
edition = "2018"
1010
license = "MIT/Apache-2.0"
@@ -32,7 +32,7 @@ cfg-if = "0.1"
3232
[features]
3333
default = []
3434
# Unconditionally sets jemalloc as the global allocator:
35-
force_global_jemalloc = [ "tikv-jemallocator" ]
35+
force_global_jemalloc = ["tikv-jemallocator"]
3636

3737
# To enable `jemalloc` as the `#[global_allocator]` by default
3838
# for a particular target, white-list the target explicitly here:
@@ -51,4 +51,3 @@ tikv-jemallocator = { version = "0.6.0", path = "../jemallocator", optional = fa
5151
# - fuchsia
5252
# - emscripten
5353
# - wasm32
54-

jemallocator/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name = "tikv-jemallocator"
33
# Make sure to update the version in the README as well:
44
version = "0.6.0"
55
authors = [
6-
"Alex Crichton <[email protected]>",
7-
"Gonzalo Brito Gadeschi <[email protected]>",
8-
"Simon Sapin <[email protected]>",
9-
"Steven Fackler <[email protected]>",
10-
"The TiKV Project Developers",
6+
"Alex Crichton <[email protected]>",
7+
"Gonzalo Brito Gadeschi <[email protected]>",
8+
"Simon Sapin <[email protected]>",
9+
"Steven Fackler <[email protected]>",
10+
"The TiKV Project Developers",
1111
]
1212
license = "MIT/Apache-2.0"
1313
readme = "README.md"
@@ -51,11 +51,11 @@ profiling = ["tikv-jemalloc-sys/profiling"]
5151
debug = ["tikv-jemalloc-sys/debug"]
5252
stats = ["tikv-jemalloc-sys/stats"]
5353
background_threads_runtime_support = [
54-
"tikv-jemalloc-sys/background_threads_runtime_support",
54+
"tikv-jemalloc-sys/background_threads_runtime_support",
5555
]
5656
background_threads = ["tikv-jemalloc-sys/background_threads"]
5757
unprefixed_malloc_on_supported_platforms = [
58-
"tikv-jemalloc-sys/unprefixed_malloc_on_supported_platforms",
58+
"tikv-jemalloc-sys/unprefixed_malloc_on_supported_platforms",
5959
]
6060
disable_initial_exec_tls = ["tikv-jemalloc-sys/disable_initial_exec_tls"]
6161
disable_cache_oblivious = ["tikv-jemalloc-sys/disable_cache_oblivious"]

0 commit comments

Comments
 (0)