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
7 changes: 0 additions & 7 deletions CHANGELOG.md

This file was deleted.

42 changes: 21 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,35 +1,37 @@
[package]
name = "template-rs"
version = "0.0.0"
name = "hwdecode"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/al8n/template-rs"
homepage = "https://github.com/al8n/template-rs"
documentation = "https://docs.rs/template-rs"
description = "A template for creating Rust open-source repo on GitHub"
rust-version = "1.95"
description = "Cross-platform hardware-only video decoder built on top of ffmpeg-next, with auto-probe across HW backends. Callers handle software fallback."
Comment on lines +2 to +6
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR title is "0.1.0" but Cargo.toml still sets version = "0.0.0". Please bump the crate version (and any related docs/CHANGELOG) so metadata matches the intended release.

Copilot uses AI. Check for mistakes.
Comment on lines +2 to +6
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR title suggests a 0.1.0 release, but the crate version in Cargo.toml is still 0.0.0. If this PR is meant to cut 0.1.0, please bump package.version accordingly (and ensure any release notes/changelog expectations are aligned).

Copilot uses AI. Check for mistakes.
repository = "https://github.com/findit-ai/hwdecode"
homepage = "https://github.com/findit-ai/hwdecode"
documentation = "https://docs.rs/hwdecode"
license = "MIT OR Apache-2.0"
rust-version = "1.73"

[[bench]]
path = "benches/foo.rs"
name = "foo"
harness = false

[features]
default = ["std"]
alloc = []
std = []

[dependencies]
ffmpeg-next = { version = "8.1", default-features = false, features = ["codec", "format"] }
thiserror = "2"
tracing = "0.1"
libc = "0.2"

[dev-dependencies]
criterion = "0.8"
tempfile = "3"

[[example]]
name = "decode"
path = "examples/decode.rs"

[[bench]]
name = "decode"
path = "benches/decode.rs"
harness = false

[profile.bench]
opt-level = 3
debug = false
codegen-units = 1
lto = 'thin'
lto = "thin"
incremental = false
debug-assertions = false
overflow-checks = false
Expand All @@ -41,8 +43,6 @@ rustdoc-args = ["--cfg", "docsrs"]

[lints.rust]
rust_2018_idioms = "warn"
single_use_lifetimes = "warn"
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(all_tests)',
'cfg(tarpaulin)',
] }
51 changes: 0 additions & 51 deletions README-zh_CN.md

This file was deleted.

Loading
Loading