Skip to content

Commit

Permalink
Prepare manifest for crates.io
Browse files Browse the repository at this point in the history
  • Loading branch information
alex65536 committed Jul 11, 2022
1 parent 62d9c7c commit db6451b
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
12 changes: 10 additions & 2 deletions chess/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,22 @@
name = "owlchess"
version = "0.1.0"
edition = "2021"
description = "Yet another chess library for Rust"
authors = ["Alexander Kernozhitsky <[email protected]>"]
readme = "../README.md"
homepage = "https://github.com/alex65536/owlchess"
repository = "https://github.com/alex65536/owlchess"
license = "MIT"
keywords = ["games", "chess"]
categories = ["games", "parser-implementations"]

[dependencies]
owlchess_base = { path = "../chess_base" }
owlchess_base = { path = "../chess_base", version = "0.1.0" }
thiserror = "1.0.31"
arrayvec = "0.7.2"

[build-dependencies]
owlchess_base = { path = "../chess_base" }
owlchess_base = { path = "../chess_base", version = "0.1.0" }
rand_xoshiro = "0.6.0"
rand_core = "0.6.3"

Expand Down
8 changes: 8 additions & 0 deletions chess_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
name = "owlchess_base"
version = "0.1.0"
edition = "2021"
description = "Base types for owlchess (not indended to use directly)"
authors = ["Alexander Kernozhitsky <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/alex65536/owlchess"
repository = "https://github.com/alex65536/owlchess"
license = "MIT"
keywords = ["games", "chess"]
categories = ["games", "parser-implementations"]

[dependencies]
thiserror = "1.0.31"
Expand Down
6 changes: 6 additions & 0 deletions chess_base/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Base types for owlchess

This is an auxiliary crate for `owlchess`, which contains some core stuff. It was split from the main crate,
so everything declared here can be used in the build script for `owlchess`.

Normally you don't want to use this crate directly. Use `owlchess` instead.

0 comments on commit db6451b

Please sign in to comment.