-
Rewrite UI and correct annotation extension.
Rewrite backend. Original annotation was written for SRU/SWORD. Users don't use this tech anymore and require restful APIs or GraphQL.
Allow businesses…
-
pydantic v2 is unsupported
---------------------------------------------------------------------------
PydanticUserError Traceback (most recent call last)
[](https://local…
-
when training the demo, I encountered this problem:
== Train voice (proc no. 1 (word_splitter)) ==
['__call__', '__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format…
-
I ran into another issue:
```rust
let mut tap = tap::Tap::new("eth0").unwrap();
```
is failing with this error:
```
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Error …
-
### Code
```Rust
use std::marker::PhantomData;
#[repr(C)]
struct A {
a: *const A,
p: PhantomData,
}
extern "C" {
fn f(a: *const A);
}
fn main() {}
```
### Meta
`rustc --version -…
-
**Describe the bug**
When an instance of `ufe.Path` in Python is string-ified using `str()`, the resulting string is missing the comma separator between the Maya segment and the USD segment. This str…
-
### Code
```Rust
#![feature(repr128)]
#[derive(PartialEq, Debug)]
#[repr(i128)]
enum Test {
A(Box) = 0,
B(usize) = u64::MAX as i128 + 1,
}
fn main() {
assert_ne!(Test::A(…
-
### What it does
Warns if a trait is manually implemented on a union type, if it's not safe to do so.
For example
```rust
#[repr(C)]
pub union Foo {
bar: u32,
baz: u64
}
impl Partia…
-
This is a tracking issue for the RFC "Transparent Unions and Enums" (rust-lang/rfcs#2645).
**Steps:**
- [x] Implement the RFC (cc @rust-lang/compiler -- can anyone write up mentoring instructio…
-
This is not exactly a customer request since I'm not using this crate currently, but I was looking on the docs and I wondered why won't you make the inner field of [`Unalign`](https://docs.rs/zerocopy…