-
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
9 changed files
with
36 additions
and
28 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cgt" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["Tomasz Maciosowski <[email protected]>"] | ||
license = "AGPL-3.0" | ||
|
@@ -9,7 +9,6 @@ repository = "https://github.com/t4ccer/cgt-rs" | |
description = "Library to work with Combinatorial Games" | ||
homepage = "https://cgt.t4ccer.com/" | ||
documentation = "https://docs.rs/cgt" | ||
exclude = ["papers"] | ||
keywords = ["cgt"] | ||
categories = ["mathematics", "science"] | ||
|
||
|
@@ -22,7 +21,7 @@ nom = "7.1.3" | |
num-rational = { version = "0.4.1", default-features = false, features = ["std"]} | ||
serde = { version = "1.0.172", optional = true, features = ["derive"]} | ||
serde_repr = { version = "0.1.12", optional = true} | ||
cgt-derive = { path = "cgt-derive"} | ||
cgt_derive = { version = "0.4.0", path = "./cgt_derive"} | ||
rayon = {version = "1.7.0", optional = true} | ||
dashmap = { version = "5.5.3", features = ["inline"] } | ||
rand = "0.8.5" | ||
|
@@ -36,7 +35,7 @@ serde = ["dep:serde", "dep:serde_repr", "num-rational/serde"] | |
rayon = ["dep:rayon"] | ||
|
||
[workspace] | ||
members = ["cgt-cli", "cgt-py", "cgt-derive"] | ||
members = ["cgt-cli", "cgt-py", "cgt_derive"] | ||
|
||
[profile.release] | ||
lto = true | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cgt-cli" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["Tomasz Maciosowski <[email protected]>"] | ||
license = "AGPL-3.0" | ||
|
This file was deleted.
Oops, something went wrong.
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
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,17 @@ | ||
[package] | ||
name = "cgt_derive" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["Tomasz Maciosowski <[email protected]>"] | ||
license = "AGPL-3.0" | ||
readme = "README.md" | ||
repository = "https://github.com/t4ccer/cgt-rs" | ||
description = "Derive macros for cgt package" | ||
categories = ["mathematics", "science"] | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
quote = "1.0.33" | ||
syn = {version = "2.0.39"} |
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,3 @@ | ||
# `cgt_derive` | ||
|
||
See https://docs.rs/cgt |
File renamed without changes.
File renamed without changes.