Skip to content

Commit cd8b36d

Browse files
upload complete project
1 parent defd3f4 commit cd8b36d

33 files changed

+31064
-1
lines changed

NPB-RAYON/.gitignore

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
### Rust ###
2+
# Generated by Cargo
3+
# will have compiled files and executables
4+
debug/
5+
target/
6+
7+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
8+
Cargo.lock
9+
10+
# These are backup files generated by rustfmt
11+
**/*.rs.bk
12+
13+
# MSVC Windows builds of rustc generate these, which store debugging information
14+
*.pdb
15+
16+
### VisualStudioCode ###
17+
.vscode/*
18+
!.vscode/settings.json
19+
!.vscode/tasks.json
20+
!.vscode/launch.json
21+
!.vscode/extensions.json
22+
!.vscode/*.code-snippets
23+
24+
# Local History for Visual Studio Code
25+
.history/
26+
27+
# Built Visual Studio Code Extensions
28+
*.vsix
29+
30+
### VisualStudioCode Patch ###
31+
# Ignore all local history of files
32+
.history
33+
.ionide

NPB-RAYON/Cargo.toml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
[package]
2+
name = "npb-rust-ser"
3+
version = "0.1.0"
4+
edition = "2024"
5+
6+
[profile.release]
7+
opt-level = 3
8+
debug = false
9+
strip = true
10+
codegen-units = 1
11+
lto = "fat"
12+
panic = "abort"
13+
14+
[[bin]]
15+
name = "bt"
16+
path = "src/bt.rs"
17+
[[bin]]
18+
name = "ep"
19+
path = "src/ep.rs"
20+
[[bin]]
21+
name = "cg"
22+
path = "src/cg.rs"
23+
[[bin]]
24+
name = "ft"
25+
path = "src/ft.rs"
26+
[[bin]]
27+
name = "is"
28+
path = "src/is.rs"
29+
[[bin]]
30+
name = "lu"
31+
path = "src/lu.rs"
32+
[[bin]]
33+
name = "mg"
34+
path = "src/mg.rs"
35+
[[bin]]
36+
name = "sp"
37+
path = "src/sp.rs"
38+
39+
[dependencies]
40+
rayon = "1.10"
41+
42+
[lints.rust]
43+
unexpected_cfgs = {level = "warn", check-cfg = ['cfg(class,values("S","W","A","B","C","D","E","F"))','cfg(safe,values("true"))','cfg(timers,values("true"))']}

NPB-RAYON/README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)