Skip to content

Commit

Permalink
chore: individual descriptions for each crate
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Feb 9, 2024
1 parent 8ba030d commit e21fed8
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 8 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[workspace.package]
version = "0.1.0"
description = "An experimental implementation of YARA in Rust"
authors = ["Victor M. Alvarez <[email protected]>"]
edition = "2021"
homepage = "https://github.com/VirusTotal/yara-x"
Expand Down
4 changes: 3 additions & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[package]
name = "yara-x-cli"
description = """
A command-line interface for YARA-X.
"""
version.workspace = true
authors.workspace = true
edition.workspace = true
description.workspace = true
readme.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
4 changes: 3 additions & 1 deletion clib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[package]
name = "yara-x-c"
description = """
A C API for the YARA-X library.
"""
version.workspace = true
authors.workspace = true
edition.workspace = true
description.workspace = true
readme.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
4 changes: 3 additions & 1 deletion fmt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[package]
name = "yara-x-fmt"
description = """
A code-formatting library for YARA rules.
"""
version.workspace = true
authors.workspace = true
edition.workspace = true
description.workspace = true
readme.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
4 changes: 3 additions & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[package]
name = "yara-x"
description = """
A pure Rust implmentation of YARA-X.
"""
version.workspace = true
authors.workspace = true
edition.workspace = true
description.workspace = true
readme.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
4 changes: 3 additions & 1 deletion parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[package]
name = "yara-x-parser"
description = """
A parsing library for YARA rules.
"""
version.workspace = true
authors.workspace = true
edition.workspace = true
description.workspace = true
readme.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
4 changes: 3 additions & 1 deletion proto-yaml/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[package]
name = "yara-x-proto-yaml"
description = """
Library the converts protocol buffers into YAML.
"""
version.workspace = true
description.workspace = true
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down
4 changes: 3 additions & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "yara-x-proto"
description = "Protocol buffer with options for YARA modules"
description = """
Protocol buffer with options for YARA modules.
"""
version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
3 changes: 3 additions & 0 deletions py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[package]
name = "yara-x-py"
description = """
Python bindings for YARA-X library.
"""
version.workspace = true
edition.workspace = true

Expand Down

0 comments on commit e21fed8

Please sign in to comment.