-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |