forked from immunant/c2rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
workspace.package
inheritance for most package fields to standa…
…rdize and sync fields.
- Loading branch information
1 parent
b1d76be
commit 4bb830e
Showing
18 changed files
with
139 additions
and
92 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,5 +22,16 @@ exclude = [ | |
"tests", | ||
] | ||
|
||
[workspace.package] | ||
version = "0.16.0" | ||
authors = ["The C2Rust Project Developers <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
homepage = "https://c2rust.com/" | ||
repository = "https://github.com/immunant/c2rust/" | ||
license = "BSD-3-Clause" | ||
keywords = ["transpiler", "migration", "translation", "c"] | ||
categories = ["development-tools", "development-tools::ffi", "command-line-utilities"] | ||
|
||
[profile.dev.package."*"] | ||
opt-level = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
[package] | ||
name = "c2rust-analysis-rt" | ||
version = "0.1.0" | ||
authors = ["The C2Rust Development Team <[email protected]>", | ||
"Stephen Crane <[email protected]>"] | ||
edition = "2021" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
description = "C2Rust runtime for recording dynamic analysis, targeted by c2rust-instrument and consumed by c2rust-pdg" | ||
readme.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
[package] | ||
name = "c2rust-asm-casts" | ||
version = "0.2.0" | ||
authors = ["The C2Rust Project Developers <[email protected]>"] | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
homepage = "https://c2rust.com/" | ||
repository = "https://github.com/immunant/c2rust/tree/master/c2rust-asm-casts" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
description = "Type cast helpers for use with C2Rust's inline assembly implementation" | ||
readme.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "c2rust-ast-builder" | ||
version = "0.16.0" | ||
authors = [ | ||
"The C2Rust Project Developers <[email protected]>", | ||
"Eric Mertens <[email protected]>", | ||
] | ||
license = "BSD-3-Clause" | ||
homepage = "https://c2rust.com/" | ||
repository = "https://github.com/immunant/c2rust" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
description = "Rust AST builder support crate for the C2Rust project" | ||
edition = "2021" | ||
readme.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
proc-macro2 = { version = "1.0", features = ["span-locations"]} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
[package] | ||
name = "c2rust-ast-exporter" | ||
version = "0.16.0" | ||
authors = [ | ||
"The C2Rust Project Developers <[email protected]>", | ||
"Eric Mertens <[email protected]>", | ||
"Alec Theriault <[email protected]>", | ||
] | ||
links = "clangAstExporter" | ||
license = "BSD-3-Clause" | ||
homepage = "https://c2rust.com/" | ||
repository = "https://github.com/immunant/c2rust" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
description = "Clang AST extraction API for use in the C2Rust project" | ||
edition = "2021" | ||
readme.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
links = "clangAstExporter" | ||
|
||
[dependencies] | ||
libc = "0.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
[package] | ||
name = "c2rust-ast-printer" | ||
version = "0.16.0" | ||
authors = ["The Rust Project Developers", "Stephen Crane <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/immunant/c2rust" | ||
version.workspace = true | ||
authors = ["The C2Rust Project Developers <[email protected]>", "The Rust Project Developers"] | ||
edition.workspace = true | ||
description = "Customized version of libsyntax rust pretty-printer" | ||
readme = "README.md" | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license = "MIT OR Apache-2.0" | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
log = "0.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
[package] | ||
name = "c2rust-bitfields-derive" | ||
version = "0.2.1" | ||
authors = [ | ||
"The C2Rust Project Developers <[email protected]>", | ||
"Daniel Kolsoi <[email protected]>", | ||
] | ||
license = "BSD-3-Clause" | ||
homepage = "https://c2rust.com/" | ||
repository = "https://github.com/immunant/c2rust/tree/master/c2rust-bitfields-derive" | ||
edition = "2021" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
description = "C-compatible struct bitfield derive implementation used in the C2Rust project" | ||
readme = "README.md" | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
proc-macro2 = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
[package] | ||
name = "c2rust-bitfields" | ||
version = "0.3.0" | ||
authors = [ | ||
"The C2Rust Project Developers <[email protected]>", | ||
"Daniel Kolsoi <[email protected]>", | ||
] | ||
license = "BSD-3-Clause" | ||
homepage = "https://c2rust.com/" | ||
repository = "https://github.com/immunant/c2rust/tree/master/c2rust-bitfields" | ||
edition = "2021" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
description = "C-compatible struct bitfield implementation used in the C2Rust project" | ||
readme = "README.md" | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
c2rust-bitfields-derive = { version = "0.2", path = "../c2rust-bitfields-derive" } | ||
c2rust-bitfields-derive = { version = "0.16.0", path = "../c2rust-bitfields-derive" } | ||
|
||
[dev-dependencies] | ||
libc = "0.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
[package] | ||
name = "c2rust-build-paths" | ||
version = "0.1.0" | ||
edition = "2021" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
description = "C2Rust utilities related to build paths, primarily at build time" | ||
readme.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
print_bytes = "1.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
[package] | ||
name = "c2rust-transpile" | ||
version = "0.16.0" | ||
authors = [ | ||
"The C2Rust Project Developers <[email protected]>", | ||
"Eric Mertens <[email protected]>", | ||
"Alec Theriault <[email protected]>", | ||
] | ||
license = "BSD-3-Clause" | ||
homepage = "https://c2rust.com/" | ||
repository = "https://github.com/immunant/c2rust" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
description = "C2Rust transpiler implementation" | ||
edition = "2021" | ||
readme.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
c2rust-ast-builder = { version = "0.16.0", path = "../c2rust-ast-builder" } | ||
c2rust-ast-exporter = { version = "0.16.0", path = "../c2rust-ast-exporter" } | ||
c2rust-ast-printer = { version = "0.16.0", path = "../c2rust-ast-printer" } | ||
c2rust-bitfields = { version = "0.3.0", path = "../c2rust-bitfields" } | ||
c2rust-bitfields = { version = "0.16.0", path = "../c2rust-bitfields" } | ||
colored = "2.0" | ||
dtoa = "1.0" | ||
failure = "0.1.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "c2rust" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
description = "C to Rust translation, refactoring, and cross-checking" | ||
version = "0.16.0" | ||
authors = ["The C2Rust Project Developers <[email protected]>"] | ||
license = "BSD-3-Clause" | ||
homepage = "https://c2rust.com/" | ||
repository = "https://github.com/immunant/c2rust" | ||
edition = "2021" | ||
categories = ["development-tools", "development-tools::ffi", "command-line-utilities"] | ||
keywords = ["transpiler", "migration", "translation", "c"] | ||
readme = "README.md" | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
default-run = "c2rust" | ||
|
||
[badges] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.