Plex Media Server

最新版本 Rust 1.43.1

Rust 1.43.1

Rust 1.43.1
Plex Media Server 連接您所有的本地和在線媒體 Plex 客戶端。集中的圖書館管理,在線內容的流式傳輸和轉碼功能的結合提供了靈活性和易用性。 Plex Media Server 在 Mac,PC 或兼容的 NAS 設備上運行,並向您的所有 Plex 客戶端(包括啟用 Plex 的移動設備和智能電視)提供媒體服務。

Plex Media Server 功能:

讓您的媒體更加美麗
Plex 為您提供了一個簡單的界面, :您的電影和電視收藏,音樂庫以及所有照片和家庭視頻。 Plex 通過添加說明,劇情總結,海報和專輯封面來豐富媒體庫。在家中或任何移動設備上的每台電視機上享受您的媒體。

Plex 跟踪您的媒體
最近添加的內容顯示在前面和中心,因此您可以立即看到什麼是新的。 Plex 也知道你正在觀看哪些電影和節目,所以你可以輕鬆地拿起你離開的地方或播放下一集.

在大多數設備上可用
在你的 Windows,Mac 或 Linux 計算機上運行 Plex Media Server 並流到你的 iOS,Android,Windows 電話 8 或 Windows 8.1 設備。你家有多台電視機?沒問題,Plex 也適用於 Chromecast,Amazon Fire TV,Roku,Google TV,Xbox,PlayStation®,VIZIO 以及許多新型智能電視。 Plex 甚至可以在大多數網絡連接的存儲設備上使用.

播放列表,用於無盡的娛樂
創建自己的自定義音樂或視頻播放列表,以適應任何場合,包括基於流派,收藏等的智能播放列表。您甚至可以導入現有的 iTunes 播放列表,智能播放列表,評分,曲目計數和其他詳細信息!播放列表可在 iOS 和 Web 應用程序中使用,但 Plex 團隊將努力將其帶入所有平台.

您的大屏幕最好的朋友
Plex 將您從單屏查看中解放出來。借助 Plex Companion,您可以將精彩內容從手機投射到電視上。當你上床睡覺的時候,請繼續在平板電腦上看電影。當電話鈴響時,暫停一個插曲,跳過你聽過太多次的曲目或者只是了解更多關於你正在用世界上最好的遙控器觀看的東西.

與朋友和家人分享你的媒體
輕鬆地在朋友之間分享媒體,所以你們都可以一起發現和享受更多的內容。通過分享您的度假照片和家庭視頻,與遙遠的家庭成員交換珍貴的回憶。現在,你也可以看到你的朋友是從你的收藏中流出的,因為每個人都有自己的觀點進入你的圖書館。

訪問你最喜歡的在線內容
Plex 頻道提供訪問眾多的在線內容來源,如 TED 講座,Vimeo,修訂 3,等等。無論您的興趣是什麼,您都可以找到很棒的東西來觀看或推薦給您的朋友,所有這一切都在 Plex 華麗的界面中呈現出來.

世界級的 DLNA 支持內置於
Plex 讓您的媒體在成千上萬的 DLNA 認證設備像 PS3,Xbox 360 和 WDTV Live 設備,而無需安裝專用應用程序。利用最複雜 DLNA 服務器的強大功能,輕鬆將任何格式的流式傳輸到您的設備,開箱即用.

立即保存,稍後觀看
輕鬆保存您喜愛的網站的在線視頻,稍後即使在大屏幕上觀看。或通過向朋友推薦視頻來分享體驗.

注意:Plex Pass 需要使用同步功能,將用戶添加到您的家中,查看預告片和其他附加內容,從移動設備上傳內容,使用 Gracenote Music Magic.

ScreenShot

軟體資訊
檔案版本 Rust 1.43.1

檔案名稱 rustup-init.exe
檔案大小 6.6 MB
系統 Windows 7 / Windows 8 / Windows 10
軟體類型 免費軟體
作者 Plex, Inc
官網 https://plex.tv/downloads
更新日期 2020-05-08
更新日誌

What's new in this version:

Rust 1.43.1
- Updated openssl-src to 1.1.1g for CVE-2020-1967
- Fixed the stabilization of AVX-512 features
- Fixed cargo package --list not working with unpublished dependencies


Rust 1.43.0
Language:
- Fixed using binary operations with &{number} (e.g. &1.0) not having the type inferred correctly
- Attributes such as #[cfg()] can now be used on if expressions

Syntax only changes:
- Allow type Foo: Ord syntactically
- Fuse associated and extern items up to defaultness
- Syntactically allow self in all fn contexts
- Merge fn syntax + cleanup item parsing
- item macro fragments can be interpolated into traits, impls, and extern blocks
- These are still rejected semantically, so you will likely receive an error but these changes can be seen and parsed by macros and conditional compilation

Compiler:
- You can now pass multiple lint flags to rustc to override the previous flags. For example; rustc -D unused -A unused-variables denies everything in the unused lint group except unused-variables which is explicitly allowed. However, passing rustc -A unused-variables -D unused denies everything in the unused lint group including unused-variables since the allow flag is specified before the deny flag (and therefore overridden).
- rustc will now prefer your system MinGW libraries over its bundled libraries if they are available on windows-gnu
- rustc now buffers errors/warnings printed in JSON

Libraries:
- Arc<[T; N]>, Box<[T; N]>, and Rc<[T; N]>, now implement TryFrom<Arc<[T]>>,TryFrom<Box<[T]>>, and TryFrom<Rc<[T]>> respectively. Note These conversions are only available when N is 0..=32.
- You can now use associated constants on floats and integers directly, rather than having to import the module. e.g. You can now write u32::MAX or f32::NAN with no imports.
- u8::is_ascii is now const.
- String now implements AsMut.
- Added the primitive module to std and core. This module reexports Rust's primitive types. This is mainly useful in macros where you want avoid these types being shadowed.
- Relaxed some of the trait bounds on HashMap and HashSet.
- string::FromUtf8Error now implements Clone + Eq.

Stabilized APIs:
- Once::is_completed
- f32::LOG10_2
- f32::LOG2_10
- f64::LOG10_2
- f64::LOG2_10
- iter::once_with

Cargo:
- You can now set config [profile]s in your .cargo/config, or through your environment
- Cargo will now set CARGO_BIN_EXE_ pointing to a binary's executable path when running integration tests or benchmarks. is the name of your binary as-is e.g. If you wanted the executable path for a binary named my-programyou would use env!("CARGO_BIN_EXE_my-program").

Misc:
- Certain checks in the const_err lint were deemed unrelated to const evaluation, and have been moved to the unconditional_panic and arithmetic_overflow lints

Compatibility Notes:
- Having trailing syntax in the assert! macro is now a hard error. This has been a warning since 1.36.0
- Fixed Self not having the correctly inferred type. This incorrectly led to some instances being accepted, and now correctly emits a hard error

Internal Only:
- These changes provide no direct user facing benefits, but represent significant improvements to the internals and overall performance of rustc and related tools.
- All components are now built with opt-level=3 instead of 2
- Improved how rustc generates drop code
- Improved performance from #[inline]-ing certain hot functions
- traits: preallocate 2 Vecs of known initial size
- Avoid exponential behaviour when relating types
- Skip Drop terminators for enum variants without drop glue
- Improve performance of coherence checks
- Deduplicate types in the generator witness
- Invert control in struct_lint_level


Rust 1.41.0
Language:
- You can now pass type parameters to foreign items when implementing traits. E.g. You can now write impl From for Vec {}
- You can now arbitrarily nest receiver types in the self position. E.g. you can now write fn foo(self: Box) {}. Previously only Self, &Self, &mut Self, Arc, Rc, and Box were allowed.
- You can now use any valid identifier in a format_args macro. Previously identifiers starting with an underscore were not allowed
- Visibility modifiers (e.g. pub) are now syntactically allowed on trait items and enum variants. These are still rejected semantically, but can be seen and parsed by procedural macros and conditional compilation

Compiler:
- Rustc will now warn if you have unused loop 'labels
- Removed support for the i686-unknown-dragonfly target
- Added tier 3 support* for the riscv64gc-unknown-linux-gnu target
You can now pass an arguments file passing the @path syntax to rustc. Note that the format differs somewhat from what is found in other tooling; - please see the documentation for more information
- You can now provide --extern flag without a path, indicating that it is available from the search path or specified with an -L flag
- Refer to Rust's platform support page for more information on Rust's tiered platform support

Libraries:
- The core::panic module is now stable. It was already stable through std
- NonZero* numerics now implement From<NonZero*> if it's a smaller integer width. E.g. NonZeroU16 now implements From
- MaybeUninit now implements fmt::Debug

Stabilized APIs:
- Result::map_or
- Result::map_or_else
- std::rc::Weak::weak_count
- std::rc::Weak::strong_count
- std::sync::Weak::weak_count
- std::sync::Weak::strong_count

Cargo:
- Cargo will now document all the private items for binary crates by default
- cargo-install will now reinstall the package if it detects that it is out of date
- Cargo.lock now uses a more git friendly format that should help to reduce merge conflicts
- You can now override specific dependencies's build settings E.g. [profile.dev.package.image] opt-level = 2 sets the image crate's optimisation level to 2 for debug builds. You can also use [profile..build-override] to override build scripts and their dependencies

Misc:
- You can now specify edition in documentation code blocks to compile the block for that edition. E.g. edition2018 tells rustdoc that the code sample should be compiled the 2018 edition of Rust
- You can now provide custom themes to rustdoc with --theme, and check the current theme with --check-theme
- You can use #[cfg(doc)] to compile an item when building documentation


Rust 1.40.0
Language:
- You can now use tuple structs and tuple enum variant's constructors in const contexts. e.g.
pub struct Point(i32, i32);
const ORIGIN: Point = {
let constructor = Point;
constructor(0, 0)
- You can now mark structs, enums, and enum variants with the #[non_exhaustive] attribute to indicate that there may be variants or fields added in the future. For example this requires adding a wild-card branch (_ => {}) to any match statements on a non-exhaustive enum. (RFC 2008)
- You can now use function-like procedural macros in extern blocks and in type positions. e.g. type Generated = macro!()
- Function-like and attribute procedural macros can now emit macro_rules! items, so you can now have your macros generate macros
- The meta pattern matcher in macro_rules! now correctly matches the modern attribute syntax. For example (#[$m:meta]) now matches #[attr], #[attr{tokens}], #[attr[tokens]], and #[attr(tokens)]

Compiler:
- Added tier 3 support* for the thumbv7neon-unknown-linux-musleabihf target
- Added tier 3 support for the aarch64-unknown-none-softfloat target
- Added tier 3 support for the mips64-unknown-linux-muslabi64, and mips64el-unknown-linux-muslabi64 targets
- Refer to Rust's platform support page for more information on Rust's tiered platform support

Libraries:
- The is_power_of_two method on unsigned numeric types is now a const function

Stabilized APIs:
- BTreeMap::get_key_value
- HashMap::get_key_value
- Option::as_deref_mut
- Option::as_deref
- Option::flatten
- UdpSocket::peer_addr
- f32::to_be_bytes
- f32::to_le_bytes
- f32::to_ne_bytes
- f64::to_be_bytes
- f64::to_le_bytes
- f64::to_ne_bytes
- f32::from_be_bytes
- f32::from_le_bytes
- f32::from_ne_bytes
- f64::from_be_bytes
- f64::from_le_bytes
- f64::from_ne_bytes
- mem::take
- slice::repeat
- todo!

Cargo:
- Cargo will now always display warnings, rather than only on fresh builds
- Feature flags (except --all-features) passed to a virtual workspace will now produce an error. Previously these flags were ignored
- You can now publish dev-dependencies without including a version.

Misc:
- You can now specify the #[cfg(doctest)] attribute to include an item only when running documentation tests with rustdoc

Compatibility Notes:
- As previously announced, any previous NLL warnings in the 2015 edition are now hard errors
- The include! macro will now warn if it failed to include the entire file. The include! macro unintentionally only includes the first expression in a file, and this can be unintuitive. This will become either a hard error in a future release, or the behavior may be fixed to include all expressions as expected.
- Using #[inline] on function prototypes and consts now emits a warning under unused_attribute lint. Using #[inline] anywhere else inside traits or extern blocks now correctly emits a hard error


Rust 1.39.0
Language:
- You can now create async functions and blocks with async fn, async move {}, and async {} respectively, and you can now call .await on async expressions.
- You can now use certain attributes on function, closure, and function pointer parameters. These attributes include cfg, cfg_attr, allow, warn, deny, forbid as well as inert helper attributes used by procedural macro attributes applied to items. e.g.
- fn len(
- #[cfg(windows)] slice: &[u16],
- #[cfg(not(windows))] slice: &[u8],
- ) -> usize {
- slice.len()
- You can now take shared references to bind-by-move patterns in the if guards of match arms. e.g.
- fn main() {
- let array: Box<[u8; 4]> = Box::new([1, 2, 3, 4]);
- match array {
- nums
- // ---- `nums` is bound by move.
- if nums.iter().sum::() == 10
- // ^------ `.iter()` implicitly takes a reference to `nums`.
- => {
- drop(nums);
- // ----------- Legal as `nums` was bound by move and so we have ownership.
- _ => unreachable!(),

Compiler:
- Added tier 3* support for the i686-unknown-uefi target
- Added tier 3 support for the sparc64-unknown-openbsd target
- rustc will now trim code snippets in diagnostics to fit in your terminal. Note Cargo currently doesn't use this feature. Refer to cargo#7315 to track this feature's progress
- You can now pass --show-output argument to test binaries to print the output of successful tests
- * Refer to Rust's platform support page for more information on Rust's tiered platform support

Libraries:
- Vec::new and String::new are now const functions
- LinkedList::new is now a const function
- str::len, [T]::len and str::as_bytes are now const functions
- The abs, wrapping_abs, and overflowing_abs numeric functions are now const

Stabilized APIs:
- Pin::into_inner
- Instant::checked_duration_since
- Instant::saturating_duration_since

Cargo:
- You can now publish git dependencies if supplied with a version
- The --all flag has been renamed to --workspace. Using --all is now deprecated

Misc:
- You can now pass -Clinker to rustdoc to control the linker used for compiling doctests

Compatibility Notes:
- Code that was previously accepted by the old borrow checker, but rejected by the NLL borrow checker is now a hard error in Rust 2018. This was previously a warning, and will also become a hard error in the Rust 2015 edition in the 1.40.0 release
- rustdoc now requires rustc to be installed and in the same directory to run tests. This should improve performance when running a large amount of doctests
- The try! macro will now issue a deprecation warning. It is recommended to use the ? operator instead
- asinh(-0.0) now correctly returns -0.0. Previously this returned 0.0


Rust 1.38.0
Language:
- The #[global_allocator] attribute can now be used in submodules
- The #[deprecated] attribute can now be used on macros

Compiler:
- Added pipelined compilation support to rustc. This will improve compilation times in some cases. For further information please refer to the "Evaluating pipelined rustc compilation" thread
- Added tier 3 support for the aarch64-uwp-windows-msvc, i686-uwp-windows-gnu, i686-uwp-windows-msvc, x86_64-uwp-windows-gnu, and x86_64-uwp-windows-msvc targets
- Added tier 3 support for the armv7-unknown-linux-gnueabi and armv7-unknown-linux-musleabi targets
- Added tier 3 support for the hexagon-unknown-linux-musl target
- Added tier 3 support for the riscv32i-unknown-none-elf target

Libraries:
- ascii::EscapeDefault now implements Clone and Display
- Derive macros for prelude traits (e.g. Clone, Debug, Hash) are now available at the same path as the trait. (e.g. The Clone derive macro is available at std::clone::Clone). This also makes all built-in macros available in std/core root. e.g. std::include_bytes!
- str::Chars now implements Debug
- slice::{concat, connect, join} now accepts &[T] in addition to &T
- *const T and *mut T now implement marker::Unpin
- Arc<[T]> and Rc<[T]> now implement FromIterator.
- Added euclidean remainder and division operations (div_euclid, rem_euclid) to all numeric primitives. Additionally checked, overflowing, and wrapping versions are available for all integer primitives
- thread::AccessError now implements Clone, Copy, Eq, Error, and PartialEq
- iter::{StepBy, Peekable, Take} now implement DoubleEndedIterator

Stabilized APIs:
- <*const T>::cast
- <*mut T>::cast
- Duration::as_secs_f32
- Duration::as_secs_f64
- Duration::div_duration_f32
- Duration::div_duration_f64
- Duration::div_f32
- Duration::div_f64
- Duration::from_secs_f32
- Duration::from_secs_f64
- Duration::mul_f32
- Duration::mul_f64
- any::type_name

Cargo:
- Added pipelined compilation support to cargo
- You can now pass the --features option multiple times to enable multiple features

Misc:
- rustc will now warn about some incorrect uses of mem::{uninitialized, zeroed} that are known to cause undefined behaviour

Compatibility Notes:
- The x86_64-unknown-uefi platform can not be built with rustc 1.38.0
- The armv7-unknown-linux-gnueabihf platform is known to have issues with certain crates such as libc


Rust 1.37.0
Language:
- #[must_use] will now warn if the type is contained in a tuple, Box, or an array and unused.
- You can now use the cfg and cfg_attr attributes on generic parameters.
- You can now use enum variants through type alias. e.g. You can write the following:
- type MyOption = Option;
- fn increment_or_zero(x: MyOption) -> u8 {
- match x {
- MyOption::Some(y) => y + 1,
- MyOption::None => 0,
- You can now use _ as an identifier for consts. e.g. You can write const _: u32 = 5;.
- You can now use #[repr(align(X)] on enums.
- The ? Kleene macro operator is now available in the 2015 edition.

Compiler:
You can now enable Profile-Guided Optimization with the -C profile-generate and -C profile-use flags. For more information on how to use profile - guided optimization, please refer to the rustc book.
- The rust-lldb wrapper script should now work again.

Libraries:
- mem::MaybeUninit is now ABI-compatible with T.
- Stabilized APIs:
- BufReader::buffer
- BufWriter::buffer
- Cell::from_mut
- Cell<[T]>::as_slice_of_cells
- DoubleEndedIterator::nth_back
- Option::xor
- Wrapping::reverse_bits
- i128::reverse_bits
- i16::reverse_bits
- i32::reverse_bits
- i64::reverse_bits
- i8::reverse_bits
- isize::reverse_bits
- slice::copy_within
- u128::reverse_bits
- u16::reverse_bits
- u32::reverse_bits
- u64::reverse_bits
- u8::reverse_bits
- usize::reverse_bits

Cargo:
- Cargo.lock files are now included by default when publishing executable crates with executables.
- You can now specify default-run="foo" in [package] to specify the default executable to use for cargo run.

Rust 1.43.1 相關參考資料
Announcing Rust 1.42.0 : rust - Reddit

blog.rust-lang.org/2020/0. ... I got serious about learning Rust about a month ago, and so far, the only time I&#39;ve felt like rustc let me ... Announcing Rust 1.43.1.

https://www.reddit.com

Announcing Rust 1.43.1 : programming - Reddit

1 天前 - I think this is one of the advantage of having Intel drive the language&#39;s design: it allows stable Rust to get access to the latest Intel CPU features&nbsp;...

https://www.reddit.com

Announcing Rust 1.43.1 : rust - Reddit

1 天前 - I imagine that would be only after extensive formal auditing of rustls and its underlying crypto primitives. OpenSSL is awful but it&#39;s at least a&nbsp;...

https://www.reddit.com

Announcing Rust 1.43.1 | Rust Blog

2 天前 - The Rust team has published a new point release of Rust, 1.43.1. Rust is a programming language that is empowering everyone to build&nbsp;...

https://blog.rust-lang.org

Download Rust 1.43.1 - Softpedia

Download Rust - A complex and advanced programming language which aims to provide users with a safe and concurrent method of developing their software.

https://www.softpedia.com

Rust 1.43.1 Contributors

We have had 12 individuals contribute to 1.43.1. Thank you so much! Rank, Name, Contributions. 1, Amanieu d&#39;Antras, 6. 2, Linus&nbsp;...

https://thanks.rust-lang.org

Rust 1.43.1 | Hacker News

Hacker News new | past | comments | ask | show | jobs | submit &middot; login &middot; Rust 1.43.1 (rust-lang.org). 1 point by arunc 20 minutes ago | hide | past | web | favorite |&nbsp;...

https://news.ycombinator.com

rustRELEASES.md at master · rust-langrust · GitHub

cuviper 1.43.1 release 6e40414 3 days ago ... Version 1.43.1 (2020-05-07) ... This allows rustc to compile your Rust code into LLVM bitcode allowing LLVM to&nbsp;...

https://github.com

Studies on Dwarf Leaf Rust of Barley

8 717 . 86 . 90 1. 14 1. 20 29. 0 21. 6 782 . 75 . 82 1. 28 1. 30 31. 5 23.4 848 . 66 . 75 1.43 1. 40 33. 9 25. 2 913 . 59 . 69 1. 58 1. 50 36. 3 27. 0 978 . 53 . 64 1.

https://books.google.com.tw

[stable] 1.43.1 release · Issue #71868 · rust-langrust · GitHub

5 天前 - CloudABI certificates seem to not be working? 2020-05-04T13:57:45.4403532Z Err:10 https://nuxi.nl/distfiles/cloudabi-ports/debian cloudabi&nbsp;...

https://github.com