Skip to content

Commit 890ae45

Browse files
fix: minor corrections to cargo.toml(s)
1 parent 3bc4e00 commit 890ae45

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/target
22
.DS_Store
33
.vscode
4+
.python-version

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

popgetter-cli/Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
name = "popgetter-cli"
33
version = "0.2.0"
44
edition = "2021"
5+
license = "MIT"
6+
description = "CLI for popgetter"
7+
58
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
69
[[bin]]
710
name = "popgetter"
@@ -17,7 +20,7 @@ itertools = { workspace = true }
1720
log = { workspace = true }
1821
nonempty = { workspace = true, features = ["serialize"] }
1922
polars = { workspace = true, features = ["lazy", "is_in", "http", "streaming", "parquet", "polars-io", "regex", "strings", "rows"] }
20-
popgetter-core = { path = "../popgetter-core" }
23+
popgetter-core = { path = "../popgetter-core", version = "0.2.0" }
2124
pretty_env_logger = { workspace = true }
2225
serde = { workspace = true, features = ["derive"] }
2326
serde_json = { workspace = true }

popgetter-core/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
22
name = "popgetter-core"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
5+
license = "MIT"
6+
description = "Core library for popgetter"
57

68
[dependencies]
79
anyhow = { workspace = true }

popgetter-py/Cargo.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
22
name = "popgetter-py"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
5+
license = "MIT"
6+
description = "Python bindings for popgetter"
57

68
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
79
[lib]
@@ -11,7 +13,7 @@ crate-type = ["cdylib"]
1113
[dependencies]
1214
anyhow = { workspace = true }
1315
polars = { workspace = true, features = ["lazy", "is_in", "http", "streaming", "parquet", "polars-io", "regex", "strings", "rows"] }
14-
popgetter-core = { path = "../popgetter-core" }
16+
popgetter-core = { path = "../popgetter-core", version = "0.2.0"}
1517
pyo3 = { workspace = true, features = ["anyhow", "experimental-async"] }
1618
pyo3-polars ={ workspace = true }
1719
serde = { workspace = true }

0 commit comments

Comments
 (0)