Skip to content

Commit

Permalink
chore: prepare for publishing crate
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Apr 4, 2024
1 parent 9d56479 commit 78de92a
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 22 deletions.
27 changes: 16 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ num-derive = "0.4.2"
pest = "2.7.8"
pest_derive = "2.7.8"
pretty_assertions = "1.4.0"
protobuf = { git = "https://github.com/plusvic/rust-protobuf.git", rev = "b484d8a7" }
protobuf-codegen = { git = "https://github.com/plusvic/rust-protobuf.git", rev = "b484d8a7" }
protobuf-json-mapping = { git = "https://github.com/plusvic/rust-protobuf.git", rev = "b484d8a7" }
protobuf-parse = { git = "https://github.com/plusvic/rust-protobuf.git", rev = "b484d8a7" }
protobuf-support = { git = "https://github.com/plusvic/rust-protobuf.git", rev = "b484d8a7" }
protobuf = "3.4.0"
protobuf-codegen = "3.4.0"
protobuf-json-mapping = "3.4.0"
protobuf-parse = "3.4.0"
protobuf-support = "3.4.0"
rayon = "1.5.3"
regex-syntax = "0.8.3"
regex-automata = "0.4.6"
Expand All @@ -95,11 +95,11 @@ wasmtime = "19.0.1"
yaml-rust = "0.4.5"
yansi = "1.0.1"
yara-x = { path = "lib" }
yara-x-fmt = { path = "fmt" }
yara-x-macros = { path = "macros" }
yara-x-parser = { path = "parser" }
yara-x-proto = { path = "proto" }
yara-x-proto-yaml = { path = "proto-yaml" }
yara-x-fmt = { path = "fmt", version = "0.1.0" }
yara-x-macros = { path = "macros", version = "0.1.0" }
yara-x-parser = { path = "parser", version = "0.1.0" }
yara-x-proto = { path = "proto", version = "0.1.0" }
yara-x-proto-yaml = { path = "proto-yaml", version = "0.1.0" }
zip = "0.6.2"

# Special profile that builds a release binary with link-time optimization.
Expand Down
6 changes: 5 additions & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
[package]
name = "yara-x-macros"
description = "Procedural macros used by the yara-x crate"
license.workspace = true
homepage.workspace = true
repository.workspace = true
edition.workspace = true
version.workspace = true
rust-version.workspace = true
Expand All @@ -9,7 +13,7 @@ proc-macro = true

[dependencies]
darling = "0.14.2"
syn = {version = "1.0", features = ["full", "derive", "parsing", "visit"]}
syn = { version = "1.0", features = ["full", "derive", "parsing", "visit"] }
quote = "1.0"
proc-macro2 = "1.0.43"
convert_case = "0.6.0"

0 comments on commit 78de92a

Please sign in to comment.