-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (19 loc) · 776 Bytes
/
Cargo.toml
File metadata and controls
21 lines (19 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "poem-stackvec"
version = "0.1.4"
edition = "2024"
authors = ["Stella Cannefax"]
license = "MIT"
repository = "https://github.com/Search-On-Dora/poem-stackvec"
description = "stack-allocated vector types for poem_openapi route parameters"
[dependencies]
poem-openapi = { version = "5", default-features = false }
serde_json = { version = "1.0.140", default-features = false }
smallvec = { version = "1.15", optional = true, default-features = false, features = ["union", "const_generics"] }
arrayvec = { version = "0.7", optional = true, default-features = false }
heapless = { version = "0.8", optional = true, default-features = false }
[features]
smallvec = ["dep:smallvec"]
arrayvec = ["dep:arrayvec"]
heapless = ["dep:heapless"]
default = ["arrayvec"]