Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
brmmm3 committed Feb 10, 2024
1 parent bdc0939 commit af99710
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 26 deletions.
2 changes: 0 additions & 2 deletions .cargo/config

This file was deleted.

5 changes: 5 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[build]
rustflags = ["-C", "target-cpu=x86-64-v3", "-Zshare-generics=n"]

[target.x86_64-pc-windows-msvc]
linker = "rust-lld.exe"
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.4.1] - 2024-02-10

### Changed

- Update dependencies.

## [2.4.0] - 2023-05-06

### Changed
Expand Down
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[workspace]

resolver = "2"

members = ["scandir", "pyscandir"]

[profile.release]
Expand Down
4 changes: 2 additions & 2 deletions pyscandir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scandir_rs"
version = "2.4.0"
version = "2.4.1"
authors = ["Martin Bammer <mrbm74@gmail.com>"]
description = "A fast directory scanner."
edition = "2021"
Expand All @@ -27,5 +27,5 @@ crate-type = ["cdylib"]
scandir = { path = "../scandir" }

[dependencies.pyo3]
version = "0.18"
version = "0.20"
features = ["extension-module"]
44 changes: 26 additions & 18 deletions pyscandir/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,15 @@
[project]
name = "scandir-rs"
version = "2.4.0"
repository = "https://github.com/brmmm3/scandir-rs"

[build-system]
requires = ["maturin>=0.12"]
build-backend = "maturin"

[tool.maturin]
strip = true

[package.metadata.maturin]
version = "2.4.1"
authors = [{ name = "Martin Bammer", email = "mrbm74@gmail.com" }]
description = "A Rust library for parsing and generating A2L files."
dependencies = []
requires-python = ">=3.7"
classifier = [
"Development Status :: 3 - Alpha",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Rust",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -26,6 +18,22 @@ classifier = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
"Programming Language :: Rust",
"Typing :: Typed",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: MIT License",
]

[build-system]
requires = [
"setuptools>=41.0.0",
"wheel",
"setuptools_rust>=0.10.2",
"toml",
"maturin>=0.12",
]
build-backend = "maturin"

[tool.maturin]
manylinux = "off"
strip = true
8 changes: 4 additions & 4 deletions scandir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scandir"
version = "2.4.0"
version = "2.4.1"
authors = ["Martin Bammer <mrbm74@gmail.com>"]
description = "A fast directory scanner."
edition = "2021"
Expand All @@ -17,13 +17,13 @@ crate-type = ["lib"]

[dependencies]
jwalk-meta = "0.9"
rayon = "1.7"
flume = "0.10"
rayon = "1.8"
flume = "0.11"
glob-sl = "0.4"
speedy = { version = "0.8", optional = true }

[dev-dependencies]
tempfile = "3.5"
tempfile = "3.10"
unix-named-pipe = "0.2"

[features]
Expand Down

0 comments on commit af99710

Please sign in to comment.