Ruby: Enable derive feature in clap

This allows nicer CLI definitions.
This commit is contained in:
Harry Maclean
2023-04-06 16:59:08 +08:00
parent 5ee9711f03
commit 5a8a6f2971
2 changed files with 3 additions and 2 deletions

Binary file not shown.

View File

@@ -1,5 +1,6 @@
[package]
name = "ruby-extractor"
name = "codeql-ruby-extractor"
description = "CodeQL Ruby extractor"
version = "0.1.0"
authors = ["GitHub"]
edition = "2018"
@@ -10,7 +11,7 @@ edition = "2018"
tree-sitter = "0.20"
tree-sitter-embedded-template = { git = "https://github.com/tree-sitter/tree-sitter-embedded-template.git", rev = "203f7bd3c1bbfbd98fc19add4b8fcb213c059205" }
tree-sitter-ruby = { git = "https://github.com/tree-sitter/tree-sitter-ruby.git", rev = "206c7077164372c596ffa8eaadb9435c28941364" }
clap = "4.2"
clap = { version = "4.2", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
rayon = "1.5.0"