Skip to content

Commit

Permalink
Merge pull request #4 from Rust-for-Linux/rust-initial
Browse files Browse the repository at this point in the history
Initial Rust support
  • Loading branch information
ojeda authored Sep 12, 2020
2 parents d012a71 + 0a99f23 commit e280b81
Show file tree
Hide file tree
Showing 44 changed files with 2,335 additions and 13 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,6 @@ x509.genkey

# Clang's compilation database file
/compile_commands.json

# Rust (cargo) compilation artifacts
/target/
374 changes: 374 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# SPDX-License-Identifier: GPL-2.0

# TODO: generate automatically
[workspace]
members = [
"rust/shlex",
"rust/kernel",
"drivers/char/rust_example",
]

Loading

0 comments on commit e280b81

Please sign in to comment.