Skip to content

Releases: peanutbother/serini

[Maintenance] Updates of dependencies

11 Oct 16:36
a33c792

Choose a tag to compare

What's Changed

Full Changelog: 0.2.1...0.2.2

0.2.1

11 Aug 14:27
f245b85

Choose a tag to compare

What's Changed

Full Changelog: 0.2.0...0.2.1

0.2.0

26 Jun 21:48

Choose a tag to compare

What's Changed

Full Changelog: 0.1.0...0.2.0

0.1.0

19 Jun 21:15

Choose a tag to compare

feat: initial release of serini - serde-based INI parser

🎉 First release of serini v0.1.0

Features:

  • Serialize Rust structs to INI format
  • Deserialize INI files to strongly-typed structs
  • Automatic section creation from nested structs
  • Option handling (None values as commented lines)
  • Special character escaping in values
  • Full serde integration with rename attributes
  • Type-safe parsing for all basic Rust types
  • Comprehensive error handling with thiserror

Supported types:

  • Integers (i8-i64, u8-u64)
  • Floats (f32, f64)
  • Booleans
  • Strings
  • Option
  • Custom structs