Skip to content

Commit

Permalink
feat(codegen): replace code strings with tokenstreams (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
backwardspy authored May 30, 2024
1 parent e05bb79 commit 6145332
Show file tree
Hide file tree
Showing 2 changed files with 237 additions and 247 deletions.
17 changes: 10 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,25 @@ rust.missing_docs = "warn"
clippy.all = "warn"
clippy.pedantic = "warn"
clippy.nursery = "warn"
clippy.unwrap_used = "forbid"

[dependencies]
ansi_term = { version = "0.12.1", optional = true }
css-colors = { version = "1.0.1", optional = true }
ratatui = { version = "0.26", optional = true }
serde = { version = "1.0.196", features = ["derive"], optional = true }
ratatui = { version = "0.26.3", optional = true }
serde = { version = "1.0.203", features = ["derive"], optional = true }

[build-dependencies]
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.107"
itertools = "0.13.0"
prettyplease = "0.2.20"
proc-macro2 = "1.0.84"
quote = "1.0.36"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
syn = "2.0.66"

[dev-dependencies]
crossterm = "0.27"
serde_json = "1.0.107"
crossterm = "0.27.0"
serde_json = "1.0.117"

[features]
ansi-term = ["dep:ansi_term"]
Expand Down
Loading

0 comments on commit 6145332

Please sign in to comment.