jcaesar
jcaesar
Not quite the same as #132. If you want Rust 1.32 support, you can still force term 0.6 as a dependency. (Can't test travis though.) Though honestly: It's high time...
You end up with this, ``` $ tree ~/.crates/index ~/.crates/index └── config.json ``` so the folder exists, but `.git` doesn't, so the [clone](https://github.com/ChrisMacNaughton/cargo-cacher/blob/8aca0d7f84f8b5055c04da57cd2b4f218a8629dd/src/index_sync.rs#L48) will keep failing. I feel a slight...
### Motivation I'd like to invoke user-defined functionality in a stream data processing setting. To ensure that there are no odd influences between subsequent (but usually unrelated) stream events, I'd...
Add the mecab-python3 library, a wrapper for the C MeCab library for morphological analysis of Japanese (Japanese doesn't have spaces between words, so any kind of text analysis in Japanese...
This adds the [skyfield](https://pypi.org/project/skyfield/) astronomy library, and some dependencies. It is mostly WIP because I haven't really bothered with testing (It does run a [relatively boring test app](http://doggieworld.liftm.de/test/pyodide/skyfield/) calculating dates...
## Preface My original problem was that the schema derived for the following ```rust struct ValueMap { foo: String, #[serde(flatten)] bar: HashMap, } ``` contains both `properties: {…}` and `additionalProperties:...
I like projects without folders, especially for smaller things. This can be done in `Cargo.toml` by ```toml [lib] crate-type = ["cdylib"] path = "index.rs" ``` but that'll break `webpack serve`'s...
`serde_urlencoded` is used for to deserialize query strings, and hence not all structs that are `Deserialize` can be deserialized to. I think it would be neat to document that fact...
Since wasmer-runtime doesn't exist anymore in 2.0, I wonder what this should look like. Or maybe it's time to rewrite wasmer-java to more closely follow the new API introduced with...