Skip to content

Commit

Permalink
Merge branch 'release-0.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-weis committed Dec 2, 2024
2 parents f0ca38d + 8769b09 commit dce9365
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
8 changes: 2 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
[package]
name = "ovba"
version = "0.4.1"
version = "0.5.0"
authors = ["Tim Weis <[email protected]>"]
description = "An Office VBA project parser written in 100% safe Rust."
edition = "2018"
exclude = [
".gitignore",
"docs/dev/**",
".github/**"
]
exclude = [".gitignore", "docs/dev/**", ".github/**"]
license-file = "LICENSE"
repository = "https://github.com/tim-weis/ovba"
documentation = "https://docs.rs/ovba"
Expand Down
9 changes: 3 additions & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ pub enum SysKind {

// TODO: Remove exemption once the implementation is complete.
#[allow(dead_code)]

/// Specifies a reference to a twiddled type library and its extended type library.
#[derive(Debug)]
pub struct ReferenceControl {
Expand All @@ -120,7 +119,6 @@ pub struct ReferenceControl {

// TODO: Remove exemption once the implementation is complete.
#[allow(dead_code)]

/// Specifies the identifier of the Automation type library the containing
/// [`ReferenceControl`]'s twiddled type library was generated from.
#[derive(Debug)]
Expand All @@ -132,7 +130,6 @@ pub struct ReferenceOriginal {

// TODO: Remove exemption once the implementation is complete.
#[allow(dead_code)]

/// Specifies a reference to an Automation type library.
#[derive(Debug)]
pub struct ReferenceRegistered {
Expand All @@ -142,7 +139,6 @@ pub struct ReferenceRegistered {

// TODO: Remove exemption once the implementation is complete.
#[allow(dead_code)]

/// Specifies a reference to an external VBA project.
#[derive(Debug)]
pub struct ReferenceProject {
Expand All @@ -168,15 +164,16 @@ pub enum Reference {

// TODO: Remove exemption once the implementation is complete.
#[allow(dead_code)]

/// Specifies version-independent information for the VBA project.
#[derive(Debug)]
pub struct Information {
/// Specifies the platform for which the VBA project is created.
pub sys_kind: SysKind,
lcid: u32,
lcid_invoke: u32,
code_page: u16,
/// Specifies the code page for the VBA project.
///
pub code_page: u16,
name: String,
doc_string: String,
help_file_1: String,
Expand Down

0 comments on commit dce9365

Please sign in to comment.