Tom Hacohen

Results 96 issues of Tom Hacohen

They are not cryptographically secure, and should not be used for any sensitive information. It says so on the hashids website: https://hashids.org/

As suggested in https://github.com/Dushistov/flapigen-rs/pull/236#issuecomment-665161413 unfortunately type maps aren't supported in Python. The original PR indicated that it may be possible using the rust_cpython traits though unfortunately that's not possible because...

enhancement
Python

Hey, I'm currently doing something like this to throw custom exceptions: ```rust foreign_typemap!( ($p:r_type) Result => swig_i_type!(T) { $out = match $p { Ok(x) => { swig_from_rust_to_i_type!(T, x, ret) ret...

Error: ``` error in jni-include.rs parsing of jni-include.rs failed error: Can not find conversation from type 'Option < & str >' ($p:r_type) Option

enhancement
Java/JNI

Hey, At the moment, Java classes are created with a special `delete` function that is in charge of clearing the Rust object, e.g.: ``` public synchronized void delete() { if...

enhancement
Java/JNI

First of all: thanks a lot for this amazing crate, it's life-changing! As for the issue: this crate currently supports throwing exceptions for String errors. This is great though unfortunately...

enhancement
Java/JNI

Thanks to #146 we can now pass `Vec` to a function, however this clones the Item rather than references it. Even if you ignore the performance penalty, it means functions...

enhancement
Java/JNI

Having used the Python generated bindings successfully, I've now reached the point of packaging them and uploading to PyPi, though unfortunately this is quite the ordeal. The reason for that...

enhancement
Python

Hi I'm trying to figure out how to implement chaining of setters. Currently what I have in Rust is: ``` pub struct Foobar { a: usize, b: bool, } impl...

enhancement

It crashes when trying to generate Python code, only on ppc64le, the rest of the arches work. Here's the output I'm getting from Travis: https://travis-ci.com/github/etesync/etebase-py/jobs/372388374 Just thought I would share,...

may be bug