Compare commits
2 Commits
afd8169e67
...
50c9d45cb7
Author | SHA1 | Date |
---|---|---|
Benedikt Peetz | 50c9d45cb7 | |
Benedikt Peetz | 5253e59be1 |
|
@ -291,7 +291,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "trixy"
|
name = "trixy"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"convert_case",
|
"convert_case",
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "trixy"
|
name = "trixy"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A rust crate used to generate multi-language apis for your application"
|
description = "A rust crate used to generate multi-language apis for your application"
|
||||||
license = "LGPL-3.0-or-later"
|
license = "LGPL-3.0-or-later"
|
||||||
|
|
6
NEWS.md
6
NEWS.md
|
@ -25,6 +25,12 @@ If not, see <https://www.gnu.org/licenses/>.
|
||||||
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
||||||
|
|
||||||
- - -
|
- - -
|
||||||
|
## v0.2.1 - 2024-05-20
|
||||||
|
#### Bug Fixes
|
||||||
|
- **(src/types/traits/convert_trait)** Remove unneeded imports - (5253e59) - Benedikt Peetz
|
||||||
|
|
||||||
|
- - -
|
||||||
|
|
||||||
## v0.2.0 - 2024-05-20
|
## v0.2.0 - 2024-05-20
|
||||||
#### Bug Fixes
|
#### Bug Fixes
|
||||||
- **(example/main)** Update to use the new result type - (1f0b9c6) - Benedikt Peetz
|
- **(example/main)** Update to use the new result type - (1f0b9c6) - Benedikt Peetz
|
||||||
|
|
|
@ -22,14 +22,7 @@
|
||||||
|
|
||||||
use crate::types::error::{self, TypeConversionError};
|
use crate::types::error::{self, TypeConversionError};
|
||||||
use log::warn;
|
use log::warn;
|
||||||
use std::{
|
use std::ffi::{c_char, CString};
|
||||||
error::Error,
|
|
||||||
ffi::{c_char, CString},
|
|
||||||
mem::ManuallyDrop,
|
|
||||||
ptr,
|
|
||||||
};
|
|
||||||
|
|
||||||
use super::errno;
|
|
||||||
|
|
||||||
/// Convert a value into a data structure that we can send directly to c.
|
/// Convert a value into a data structure that we can send directly to c.
|
||||||
pub trait Convertible
|
pub trait Convertible
|
||||||
|
|
Reference in New Issue