Rearrange precompiled directory

This commit is contained in:
David Tolnay
2023-07-19 13:14:18 -07:00
parent a28292764c
commit b88052d875
13 changed files with 51 additions and 43 deletions
+16
View File
@@ -0,0 +1,16 @@
```toml
# Cargo.toml
[dependencies]
serde = "1" # no features=["derive"]
serde_derive-x86_64-unknown-linux-gnu = "1.0.171-alpha.3"
```
```rust
use serde_derive::{Deserialize, Serialize};
#[derive(Deserialize, Serialize)]
pub struct MyStruct {
/* ... */
}
```