Skip to content

Commit e280b81

Browse files
authored
Merge pull request #4 from Rust-for-Linux/rust-initial
Initial Rust support
2 parents d012a71 + 0a99f23 commit e280b81

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2335
-13
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -152,3 +152,6 @@ x509.genkey
152152

153153
# Clang's compilation database file
154154
/compile_commands.json
155+
156+
# Rust (cargo) compilation artifacts
157+
/target/

Cargo.lock

+374
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# SPDX-License-Identifier: GPL-2.0
2+
3+
# TODO: generate automatically
4+
[workspace]
5+
members = [
6+
"rust/shlex",
7+
"rust/kernel",
8+
"drivers/char/rust_example",
9+
]
10+

0 commit comments

Comments
 (0)