wolfgang kuehn
wolfgang kuehn
If data is multiline with `\n` as line separator (like in the provided examples/simple.py), the generated stream does not conform to the Server-Sent Events specification: data: { "time": "Server Time...
### What is the problem? The link in line 136 of https://github.com/awslabs/aws-sdk-rust/blob/main/sdk/aws-smithy-http/src/byte_stream.rs [`impl Stream`](futures_core::Stream) is broken, as it expands to https://docs.rs/aws-sdk-s3/0.4.0/aws_sdk_s3/futures_core::Stream Instead, it should point to the `futures-rs` library. ###...
Key names containing a dot are displayed truncated after the last dot. Culprit is the line ``` this.key = this.path.split('.') ``` BTW: This also seems to be an issue at...
## Versions/Environment 1. What version of Rust are you using? cargo 1.60.0 2. What operating system are you using? MS Windows 10 3. What versions of the driver and its...
The code assings `window`to `window.jsondiff`. To fix, replace the line ``` return root.jsondiff = factory(root, {}) ``` by ``` return root.jsondiff = factory(root, {}).diff; ```
fix(examples/editor modified): Modified flag does not work with editor and tuirs_editor examples. Fixes: #99
1. `cargo run --example editor foo.txt`, file may not exist 2. Insert a character => Status is modified 3. Press any no-inserting key (e.g. arrow key) => Status changes to...