Skip to content

Commit

Permalink
Cargo.toml - add package fields: include, author, description, doc, h…
Browse files Browse the repository at this point in the history
…omepage, license, readme, repo
  • Loading branch information
K0lb3 committed Jun 30, 2023
1 parent cdfe116 commit a6a2911
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
[package]
name = "urex"
version = "0.0.0"
version = "0.0.1"
edition = "2021"
include = [
"src/*",
"Cargo.toml",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"COPYRIGHT"
]
authors = ["Rudolf Kolbe <rkolbe96@gmail.com>"]
description = "wip UnityRustExtractor and patcher"
documentation = "https://docs.rs/urex"
homepage = "https://crates.io/crates/urex"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/UnityRustEXtractor/urex"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
# Binary Reader/Write - https://crates.io/crates/binary-reader
Expand Down

0 comments on commit a6a2911

Please sign in to comment.