-
Notifications
You must be signed in to change notification settings - Fork 0
0.1.0 #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
0.1.0 #1
Changes from all commits
87d9cdc
bfd9b52
9dc8542
979a2bf
189b6ba
fa30939
b48e532
4dc0be9
964e9e7
d2d96a8
e1899e6
d351f1f
3b888d8
a95968d
ab25046
36a4729
e277588
759f31d
b61c76a
bedf836
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| 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
|
||
| 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 | ||
|
|
@@ -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)', | ||
| ] } | ||
This file was deleted.
There was a problem hiding this comment.
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.