Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 26 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,38 @@ name = "_yaml_rs"
crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.27.2", features = [
"generate-import-lib",
"extension-module",
] }
pyo3 = {
version = "0.27.2",
features = [
"generate-import-lib",
"extension-module",
],
}
atoi = "2.0.0"
itoa = "1.0.17"
saphyr = "0.0.6"
saphyr-parser = "0.0.6"
ordered-float = "5.1.0"
memchr = { version = "2", default-features = false }
memchr = {
version = "2",
default-features = false,
}
encoding_rs = "0.8.35"
simdutf8 = { version = "0.1.5", features = ["aarch64_neon_prefetch"] }

[dependencies.mimalloc]
optional = true
version = "0.1.48"
features = [
# mimalloc v3
# See: https://github.com/microsoft/mimalloc/tree/dev3?tab=readme-ov-file#branches
"v3",
"override",
"local_dynamic_tls",
]
simdutf8 = {
version = "0.1.5",
features = ["aarch64_neon_prefetch"],
}
mimalloc = {
version = "0.1.48",
optional = true,
features = [
# mimalloc v3
# See: https://github.com/microsoft/mimalloc/tree/dev3?tab=readme-ov-file#branches
"v3",
"override",
"local_dynamic_tls",
],
}

[features]
default = []
Expand Down
3 changes: 3 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[toolchain]
# TOML v1.1.0 support is already available in nightly.
# IDK what the minimum version is, but it's already available in "nightly-2026-01-08",
# so we'll consider that the minimum version.
channel = "nightly"
Loading