-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generating calyx files as text via Rust too! (#2157)
* Start calyx writer * Add documentation * Clippy * Improve documentation * Add better attribute support * Refactor formatting to be more robust * Rename * Implement Griffin's review * Clippy * Implement more Griffin changes * Formatting * AsRef<str> * Clippy * My bad
- Loading branch information
1 parent
f823565
commit 96b740a
Showing
5 changed files
with
1,182 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[package] | ||
name = "calyx_writer" | ||
authors.workspace = true | ||
license-file.workspace = true | ||
keywords.workspace = true | ||
repository.workspace = true | ||
readme.workspace = true | ||
description.workspace = true | ||
categories.workspace = true | ||
homepage.workspace = true | ||
edition.workspace = true | ||
version.workspace = true | ||
rust-version.workspace = true | ||
|
||
[dependencies] | ||
|
||
[lib] | ||
name = "calyx_writer" | ||
path = "lib.rs" |
Oops, something went wrong.