Skip to content
Merged
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
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ar_archive_writer"
version = "0.4.2"
edition = "2021"
version = "0.5.0"
edition = "2024"
license = "Apache-2.0 WITH LLVM-exception"
description = "A writer for object file ar archives"
keywords = ["ar", "archive"]
Expand All @@ -11,12 +11,12 @@ repository = "https://github.com/rust-lang/ar_archive_writer"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
object = { version = "0.36.2", default-features = false, features = ["std", "read"] }
object = { version = "0.37.1", default-features = false, features = ["std", "read"] }

[dev-dependencies]
cargo-binutils = "0.3.6"
object = { version = "0.36.2", default-features = false, features = ["write", "xcoff"] }
pretty_assertions = "1.4.0"
object = { version = "0.37.1", default-features = false, features = ["write", "xcoff"] }
pretty_assertions = "1.4.1"

[lints.rust]
rust_2018_idioms = { level = "deny" }
2 changes: 1 addition & 1 deletion reference/Alignment.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// power of two, its minimum value is 1 which means no alignment requirements.
//
// - MaybeAlign is an optional type, it may be undefined or set. When it's set
// you can get the underlying Align type by using the getValue() method.
// you can get the underlying Align type by using the value() method.
//
//===----------------------------------------------------------------------===//

Expand Down
3 changes: 2 additions & 1 deletion reference/Archive.h
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,8 @@ class Archive : public Binary {

Kind kind() const { return (Kind)Format; }
bool isThin() const { return IsThin; }
static object::Archive::Kind getDefaultKindForHost();
static object::Archive::Kind getDefaultKind();
static object::Archive::Kind getDefaultKindForTriple(const Triple &T);

child_iterator child_begin(Error &Err, bool SkipInternal = true) const;
child_iterator child_end() const;
Expand Down
Loading