diff --git a/Cargo.toml b/Cargo.toml index 6c549dd..e44a332 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,9 @@ [workspace] -members = [ - "katexit", - "katexit-example", - "katexit-example-nightly", -] +members = ["katexit", "katexit-example", "katexit-example-nightly"] + +[workspace.package] +version = "0.1.5" +edition = "2018" +license = "MIT OR Apache-2.0" +repository = "https://github.com/termoshtt/katexit" +readme = "README.md" diff --git a/katexit-example-nightly/Cargo.toml b/katexit-example-nightly/Cargo.toml index 8139b27..f3c5b24 100644 --- a/katexit-example-nightly/Cargo.toml +++ b/katexit-example-nightly/Cargo.toml @@ -1,14 +1,13 @@ [package] name = "katexit-example-nightly" -version = "0.1.4" -edition = "2018" - description = "Rendered example of katexit with nightly rustc" -documentation = "https://docs.rs/katexit-example" -license = "Apache-2.0" -readme = "../README.md" -repository = "https://github.com/termoshtt/katexit" + +version.workspace = true +edition.workspace = true +license.workspace = true +readme.workspace = true +repository.workspace = true [dependencies.katexit] -version = "0.1.0" +version = "0.1.5" path = "../katexit" diff --git a/katexit-example/Cargo.toml b/katexit-example/Cargo.toml index e584baf..6676b0c 100644 --- a/katexit-example/Cargo.toml +++ b/katexit-example/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "katexit-example" -version = "0.1.4" -edition = "2018" - description = "Rendered example of katexit" documentation = "https://docs.rs/katexit-example" -license = "Apache-2.0" -readme = "../README.md" -repository = "https://github.com/termoshtt/katexit" + +version.workspace = true +edition.workspace = true +license.workspace = true +readme.workspace = true +repository.workspace = true [dependencies.katexit] -version = "0.1.0" +version = "0.1.5" path = "../katexit" diff --git a/katexit/Cargo.toml b/katexit/Cargo.toml index d9a887e..5475f31 100644 --- a/katexit/Cargo.toml +++ b/katexit/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "katexit" -version = "0.1.4" -edition = "2018" description = "Insert KaTeX autorender script into rustdoc" documentation = "https://docs.rs/katexit" -license = "Apache-2.0" -repository = "https://github.com/termoshtt/katexit" +version.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true [lib] proc-macro = true