You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
authors = ["{author} <{email}>"] # Add your name and email here.
3
-
build = "{build}" # Add your build command here (e.g. build.rs).
4
-
categories = {categories} # Add your categories here. See https://doc.rust-lang.org/cargo/reference/manifest.html?highlight=keywords#the-categories-field for more information.
5
-
description = "{description}" # Add your description here.
6
-
documentation = "{documentation}" # Add your documentation link here.
7
-
edition = "{edition}" # Add your edition here (e.g. 2018).
2
+
authors = ["{author} <{email}>"] # Add your name and email here.
3
+
build = "{build}" # Add your build command here (e.g. build.rs).
4
+
categories = {categories}# Add your categories here. See https://doc.rust-lang.org/cargo/reference/manifest.html?highlight=keywords#the-categories-field for more information.
5
+
description = "{description}" # Add your description here.
6
+
documentation = "{documentation}" # Add your documentation link here.
7
+
edition = "{edition}" # Add your edition here (e.g. 2018).
8
8
exclude = [
9
9
"/.git/*",
10
10
"/.github/*",
11
11
"/.gitignore",
12
12
"/.vscode/*"
13
-
] # Add files to exclude here
14
-
homepage = "{homepage}" # Add your homepage here
15
-
keywords = ["{keywords}"] # Add your keywords here. See https://doc.rust-lang.org/cargo/reference/manifest.html?highlight=keywords#the-keywords-field for more information.
16
-
license = "{license}" # Add your license here.
17
-
name = "{name}" # Add your library name here.
18
-
readme = "{readme}" # Add your readme here.
19
-
repository = "{repository}" # Add your repository here.
20
-
rust-version = "{rustversion}" # Add your rust version here.
21
-
version = "{version}" # Add your version here.
13
+
] # Add files to exclude here
14
+
homepage = "{homepage}" # Add your homepage here
15
+
keywords = ["{keywords}"] # Add your keywords here. See https://doc.rust-lang.org/cargo/reference/manifest.html?highlight=keywords#the-keywords-field for more information.
16
+
license = "{license}" # Add your license here.
17
+
name = "{name}" # Add your library name here.
18
+
readme = "{readme}" # Add your readme here.
19
+
repository = "{repository}" # Add your repository here.
20
+
rust-version = "{rustversion}" # Add your rust version here.
21
+
version = "{version}" # Add your version here.
22
22
include = [
23
23
"/benches/**",
24
24
"/build.rs",
@@ -31,7 +31,7 @@ include = [
31
31
"/src/**",
32
32
"/tests/**",
33
33
"/xtask/**",
34
-
] # Add files to include here.
34
+
] # Add files to include here.
35
35
36
36
[[bench]]
37
37
name = "benchmark"
@@ -60,36 +60,36 @@ default = []
60
60
all-features = true
61
61
62
62
[profile.dev]
63
-
codegen-units = 256 # Number of parallel codegen units
0 commit comments