-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
46 lines (39 loc) · 1.34 KB
/
Cargo.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[workspace.package]
version = "0.1.0-rc.6"
edition = "2021"
rust-version = "1.69"
authors = ["Alexey Gerasev <[email protected]>"]
homepage = "https://gitlab.com/agerasev/flatty"
repository = "https://gitlab.com/agerasev/flatty.git"
license = "MIT/Apache-2.0"
readme = "README.md"
[workspace.dependencies]
flatty-macros = { path = "macros", version = "0.1.0-rc.6" }
flatty-base = { path = "base", version = "0.1.0-rc.6", default-features = false }
flatty-portable = { path = "portable", version = "0.1.0-rc.6", default-features = false }
flatty-containers = { path = "containers", version = "0.1.0-rc.6", default-features = false }
flatty = { path = ".", version = "0.1.0-rc.6", default-features = false }
[package]
name = "flatty"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
description = "Flat message buffers"
authors.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
readme.workspace = true
documentation = "https://docs.rs/flatty"
[features]
default = ["std"]
std = ["alloc", "flatty-containers/std"]
alloc = ["flatty-containers/alloc"]
serde = ["flatty-portable/serde"]
[dependencies]
flatty-macros = { workspace = true }
flatty-base = { workspace = true }
flatty-portable = { workspace = true }
flatty-containers = { workspace = true }
[workspace]
members = ["io", "tests"]