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
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
Welcome to **Valu3** - the ultimate, flexible, and powerful library for manipulating diverse data types in your Rust projects. Say goodbye to the complexity of handling numbers, strings, arrays, objects, and datetime values. Valu3 is here to make your life easier!


[![crates.io](https://img.shields.io/crates/v/valu3?label=0.6.3)](https://crates.io/crates/valu3)
[![Documentation](https://docs.rs/valu3/badge.svg?version=0.6.3)](https://docs.rs/valu3/0.6.3)
[![crates.io](https://img.shields.io/crates/v/valu3?label=0.6.4)](https://crates.io/crates/valu3)
[![Documentation](https://docs.rs/valu3/badge.svg?version=0.6.4)](https://docs.rs/valu3/0.6.4)
![MSRV](https://img.shields.io/badge/rustc-1.59+-ab6000.svg)
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-web.svg)
[![Dependency Status](https://deps.rs/crate/valu3/0.6.3/status.svg)](https://deps.rs/crate/valu3/0.6.3)
![Main test](https://github.com/cogup/valu3/actions/workflows/main-test.yml/badge.svg)
[![codecov](https://codecov.io/gh/cogup/valu3/branch/master/graph/badge.svg)](https://codecov.io/gh/cogup/valu3)
[![Dependency Status](https://deps.rs/crate/valu3/0.6.4/status.svg)](https://deps.rs/crate/valu3/0.6.4)
![Main test](https://github.com/lowcarboncode/valu3/actions/workflows/main-test.yml/badge.svg)
[![codecov](https://codecov.io/gh/lowcarboncode/valu3/branch/master/graph/badge.svg)](https://codecov.io/gh/lowcarboncode/valu3)
![downloads](https://img.shields.io/crates/d/valu3.svg)

## 🌟 Key Features
Expand Down Expand Up @@ -137,7 +137,7 @@ fn main(){
```

## Contributing
If you find a bug or have a suggestion for a new feature, please open an issue on the [GitHub repository](https://github.com/cogup/valu3/issues).
If you find a bug or have a suggestion for a new feature, please open an issue on the [GitHub repository](https://github.com/lowcarboncode/valu3/issues).

If you would like to contribute to the project, please feel free to submit a pull request. Before submitting a pull request, please make sure that your code adheres to the project's style guidelines and passes all tests.

Expand All @@ -153,4 +153,4 @@ Join us in the ongoing journey to refine and expand Valu3! 🚀


## License
This project is licensed under the Apache 2.0 or MIT License. See the [LICENSE-APACHE](https://github.com/cogup/valu3/blob/main/LICENSE-APACHE) or [LICENSE-MIT](https://github.com/cogup/valu3/blob/main/LICENSE-MIT) file for more information.
This project is licensed under the Apache 2.0 or MIT License. See the [LICENSE-APACHE](https://github.com/lowcarboncode/valu3/blob/main/LICENSE-APACHE) or [LICENSE-MIT](https://github.com/lowcarboncode/valu3/blob/main/LICENSE-MIT) file for more information.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.3
0.6.4
12 changes: 4 additions & 8 deletions crates-io.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
# Valu3 Parquet
# Valu3

Apache Arrow Parquet Integration with Valu3

This library provides an integration layer between Apache Arrow's Parquet
format and the `valu3` library, facilitating seamless data manipulation and transformation between Parquet files and `valu3`'s flexible `Value` structures.
It offers convenient methods for working with tabular data, allowing for easy conversions and operations on datasets.
The Valu3 provides a flexible and powerful way to manipulate different types of data in your Rust projects. Whether you need to work with numbers, strings, arrays, objects, or datetime values, the Valu3 has you covered.

## Docs and Notices
Use our github to stay up to date [Valu3](https://github.com/cogup/valu3)
Use our github to stay up to date [Valu3](https://github.com/lowcarboncode/valu3)

## License
This project is licensed under the Apache 2.0 or MIT License. See the [LICENSE-APACHE](https://github.com/cogup/valu3/blob/main/LICENSE-APACHE) or [LICENSE-MIT](https://github.com/cogup/valu3/blob/main/LICENSE-MIT) file for more information.
This project is licensed under the Apache 2.0 or MIT License. See the [LICENSE-APACHE](https://github.com/lowcarboncode/valu3/blob/main/LICENSE-APACHE) or [LICENSE-MIT](https://github.com/lowcarboncode/valu3/blob/main/LICENSE-MIT) file for more information.
6 changes: 3 additions & 3 deletions valu3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "valu3"
version = "0.6.3"
version = "0.6.4"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "crates-io.md"
authors = ["Philippe Assis <codephilippe@gmail.com>"]
repository = "https://github.com/cogup/valu3"
repository = "https://github.com/lowcarboncode/valu3"
keywords = ["value", "generic", "type", "serde", "parsing"]
description = "A generic serialization/deserialization/type framework"
categories = ["encoding", "no-std", "parsing"]
Expand All @@ -17,7 +17,7 @@ pest_derive="2.7.15"
regex = "1.11.1"
chrono = "0.4.39"
serde = { version = "1.0.216", features = ["derive"], optional = true }
valu3-derive = { path = "../valu3_derive", optional = true, version = "0.6.3"}
valu3-derive = { path = "../valu3_derive", optional = true, version = "0.6.4"}
bincode = { version = "1.3.3", optional = true }

[dev-dependencies]
Expand Down
14 changes: 7 additions & 7 deletions valu3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
Welcome to **Valu3** - the ultimate, flexible, and powerful library for manipulating diverse data types in your Rust projects. Say goodbye to the complexity of handling numbers, strings, arrays, objects, and datetime values. Valu3 is here to make your life easier!


[![crates.io](https://img.shields.io/crates/v/valu3?label=0.6.3)](https://crates.io/crates/valu3)
[![Documentation](https://docs.rs/valu3/badge.svg?version=0.6.3)](https://docs.rs/valu3/0.6.3)
[![crates.io](https://img.shields.io/crates/v/valu3?label=0.6.4)](https://crates.io/crates/valu3)
[![Documentation](https://docs.rs/valu3/badge.svg?version=0.6.4)](https://docs.rs/valu3/0.6.4)
![MSRV](https://img.shields.io/badge/rustc-1.59+-ab6000.svg)
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-web.svg)
[![Dependency Status](https://deps.rs/crate/valu3/0.6.3/status.svg)](https://deps.rs/crate/valu3/0.6.3)
![Main test](https://github.com/cogup/valu3/actions/workflows/main-test.yml/badge.svg)
[![codecov](https://codecov.io/gh/cogup/valu3/branch/master/graph/badge.svg)](https://codecov.io/gh/cogup/valu3)
[![Dependency Status](https://deps.rs/crate/valu3/0.6.4/status.svg)](https://deps.rs/crate/valu3/0.6.4)
![Main test](https://github.com/lowcarboncode/valu3/actions/workflows/main-test.yml/badge.svg)
[![codecov](https://codecov.io/gh/lowcarboncode/valu3/branch/master/graph/badge.svg)](https://codecov.io/gh/lowcarboncode/valu3)
![downloads](https://img.shields.io/crates/d/valu3.svg)

## 🌟 Key Features
Expand Down Expand Up @@ -137,7 +137,7 @@ fn main(){
```

## Contributing
If you find a bug or have a suggestion for a new feature, please open an issue on the [GitHub repository](https://github.com/cogup/valu3/issues).
If you find a bug or have a suggestion for a new feature, please open an issue on the [GitHub repository](https://github.com/lowcarboncode/valu3/issues).

If you would like to contribute to the project, please feel free to submit a pull request. Before submitting a pull request, please make sure that your code adheres to the project's style guidelines and passes all tests.

Expand All @@ -153,4 +153,4 @@ Join us in the ongoing journey to refine and expand Valu3! 🚀


## License
This project is licensed under the Apache 2.0 or MIT License. See the [LICENSE-APACHE](https://github.com/cogup/valu3/blob/main/LICENSE-APACHE) or [LICENSE-MIT](https://github.com/cogup/valu3/blob/main/LICENSE-MIT) file for more information.
This project is licensed under the Apache 2.0 or MIT License. See the [LICENSE-APACHE](https://github.com/lowcarboncode/valu3/blob/main/LICENSE-APACHE) or [LICENSE-MIT](https://github.com/lowcarboncode/valu3/blob/main/LICENSE-MIT) file for more information.
4 changes: 2 additions & 2 deletions valu3_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "valu3-derive"
version = "0.6.3"
version = "0.6.4"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "crates-io.md"
authors = ["Philippe Assis <codephilippe@gmail.com>"]
repository = "https://github.com/cogup/valu3"
repository = "https://github.com/lowcarboncode/valu3"
keywords = ["valu3", "serialization", "deserialization", "serde", "derive"]
description = "Derive macros for the valu3 crate."
categories = ["encoding", "no-std", "parsing"]
Expand Down
14 changes: 7 additions & 7 deletions valu3_derive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
Welcome to **Valu3** - the ultimate, flexible, and powerful library for manipulating diverse data types in your Rust projects. Say goodbye to the complexity of handling numbers, strings, arrays, objects, and datetime values. Valu3 is here to make your life easier!


[![crates.io](https://img.shields.io/crates/v/valu3?label=0.6.3)](https://crates.io/crates/valu3)
[![Documentation](https://docs.rs/valu3/badge.svg?version=0.6.3)](https://docs.rs/valu3/0.6.3)
[![crates.io](https://img.shields.io/crates/v/valu3?label=0.6.4)](https://crates.io/crates/valu3)
[![Documentation](https://docs.rs/valu3/badge.svg?version=0.6.4)](https://docs.rs/valu3/0.6.4)
![MSRV](https://img.shields.io/badge/rustc-1.59+-ab6000.svg)
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-web.svg)
[![Dependency Status](https://deps.rs/crate/valu3/0.6.3/status.svg)](https://deps.rs/crate/valu3/0.6.3)
![Main test](https://github.com/cogup/valu3/actions/workflows/main-test.yml/badge.svg)
[![codecov](https://codecov.io/gh/cogup/valu3/branch/master/graph/badge.svg)](https://codecov.io/gh/cogup/valu3)
[![Dependency Status](https://deps.rs/crate/valu3/0.6.4/status.svg)](https://deps.rs/crate/valu3/0.6.4)
![Main test](https://github.com/lowcarboncode/valu3/actions/workflows/main-test.yml/badge.svg)
[![codecov](https://codecov.io/gh/lowcarboncode/valu3/branch/master/graph/badge.svg)](https://codecov.io/gh/lowcarboncode/valu3)
![downloads](https://img.shields.io/crates/d/valu3.svg)

## 🌟 Key Features
Expand Down Expand Up @@ -137,7 +137,7 @@ fn main(){
```

## Contributing
If you find a bug or have a suggestion for a new feature, please open an issue on the [GitHub repository](https://github.com/cogup/valu3/issues).
If you find a bug or have a suggestion for a new feature, please open an issue on the [GitHub repository](https://github.com/lowcarboncode/valu3/issues).

If you would like to contribute to the project, please feel free to submit a pull request. Before submitting a pull request, please make sure that your code adheres to the project's style guidelines and passes all tests.

Expand All @@ -153,4 +153,4 @@ Join us in the ongoing journey to refine and expand Valu3! 🚀


## License
This project is licensed under the Apache 2.0 or MIT License. See the [LICENSE-APACHE](https://github.com/cogup/valu3/blob/main/LICENSE-APACHE) or [LICENSE-MIT](https://github.com/cogup/valu3/blob/main/LICENSE-MIT) file for more information.
This project is licensed under the Apache 2.0 or MIT License. See the [LICENSE-APACHE](https://github.com/lowcarboncode/valu3/blob/main/LICENSE-APACHE) or [LICENSE-MIT](https://github.com/lowcarboncode/valu3/blob/main/LICENSE-MIT) file for more information.
Loading