Skip to content

Commit

Permalink
docs: preparing gregex dependencies for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Saphereye committed Jul 4, 2024
1 parent 8c11247 commit b3794da
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

18 changes: 15 additions & 3 deletions gregex-logic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
[package]
name = "gregex-logic"
version = "0.1.0"
version = "0.1.1"
edition = "2021"

[dependencies]
authors = ["Saphereye <[email protected]>"]
license = "MIT"
description = "Logic for the gregex crate"
keywords = ["regex", "nfa", "automata"]
categories = ["text-processing"]
documentation = "https://docs.rs/gregex-logic"
exclude = [
".github/",
".gitignore",
"LICENSE",
"README.md",
]
readme = "README.md"
repository = "https://github.com/Saphereye/gregex/gregex-logic"
18 changes: 16 additions & 2 deletions gregex-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
[package]
name = "gregex-macros"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Saphereye <[email protected]>"]
license = "MIT"
description = "Proc-Macros for the gregex crate"
keywords = ["regex", "nfa", "automata"]
categories = ["text-processing"]
documentation = "https://docs.rs/gregex-macros"
exclude = [
".github/",
".gitignore",
"LICENSE",
"README.md",
]
readme = "README.md"
repository = "https://github.com/Saphereye/gregex/gregex-macros"

[dependencies]
gregex-logic = { path = "../gregex-logic" }
gregex-logic = { path = "../gregex-logic", version = "0.1.0" }
syn = { version = "1.0", features = ["full"] }
quote = "1.0"
proc-macro2 = "1.0"
Expand Down

0 comments on commit b3794da

Please sign in to comment.