Skip to content

Commit c7abbc9

Browse files
committed
Prepare 0.4.0 release
1 parent 9a14ed8 commit c7abbc9

File tree

9 files changed

+36
-28
lines changed

9 files changed

+36
-28
lines changed

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cgt"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
authors = ["Tomasz Maciosowski <t4ccer@gmail.com>"]
66
license = "AGPL-3.0"
@@ -9,7 +9,6 @@ repository = "https://github.com/t4ccer/cgt-rs"
99
description = "Library to work with Combinatorial Games"
1010
homepage = "https://cgt.t4ccer.com/"
1111
documentation = "https://docs.rs/cgt"
12-
exclude = ["papers"]
1312
keywords = ["cgt"]
1413
categories = ["mathematics", "science"]
1514

@@ -22,7 +21,7 @@ nom = "7.1.3"
2221
num-rational = { version = "0.4.1", default-features = false, features = ["std"]}
2322
serde = { version = "1.0.172", optional = true, features = ["derive"]}
2423
serde_repr = { version = "0.1.12", optional = true}
25-
cgt-derive = { path = "cgt-derive"}
24+
cgt_derive = { version = "0.4.0", path = "./cgt_derive"}
2625
rayon = {version = "1.7.0", optional = true}
2726
dashmap = { version = "5.5.3", features = ["inline"] }
2827
rand = "0.8.5"
@@ -36,7 +35,7 @@ serde = ["dep:serde", "dep:serde_repr", "num-rational/serde"]
3635
rayon = ["dep:rayon"]
3736

3837
[workspace]
39-
members = ["cgt-cli", "cgt-py", "cgt-derive"]
38+
members = ["cgt-cli", "cgt-py", "cgt_derive"]
4039

4140
[profile.release]
4241
lto = true

cgt-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cgt-cli"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
authors = ["Tomasz Maciosowski <t4ccer@gmail.com>"]
66
license = "AGPL-3.0"

cgt-derive/Cargo.toml

Lines changed: 0 additions & 11 deletions
This file was deleted.

cgt-py/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cgt-py"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55

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

cgt_derive/Cargo.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[package]
2+
name = "cgt_derive"
3+
version = "0.4.0"
4+
edition = "2021"
5+
authors = ["Tomasz Maciosowski <t4ccer@gmail.com>"]
6+
license = "AGPL-3.0"
7+
readme = "README.md"
8+
repository = "https://github.com/t4ccer/cgt-rs"
9+
description = "Derive macros for cgt package"
10+
categories = ["mathematics", "science"]
11+
12+
[lib]
13+
proc-macro = true
14+
15+
[dependencies]
16+
quote = "1.0.33"
17+
syn = {version = "2.0.39"}

cgt_derive/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# `cgt_derive`
2+
3+
See https://docs.rs/cgt
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)