-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 765 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "rust-patch"
description = "Patch structs with other structs"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
categories.workspace = true
keywords.workspace = true
[workspace]
members = [".", "rust-patch-derive"]
[workspace.package]
version = "0.1.3"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["netthier <lp@senselabs.de>"]
repository = "https://github.com/SenseLabsDE/rust-patch"
categories = ["no-std", "no-std::no-alloc", "development-tools"]
keywords = ["patch", "struct"]
[dev-dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[dependencies]
rust-patch-derive = { version = "=0.1.3", path = "./rust-patch-derive" }