-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (29 loc) · 1.01 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
[package]
authors = ["Brandon W Maister <[email protected]>"]
name = "uuid-b64"
description = "Base64 encoding for UUIDs"
version = "0.2.0"
license = "Apache-2.0/MIT"
readme = "README.md"
categories = ["encoding", "value-formatting"]
repository = "https://github.com/quodlibetor/uuid-b64"
edition = "2021"
[badges]
travis-ci = { repository = "quodlibetor/uuid-b64", branch = "master" }
[dependencies]
base64 = "0.22.0"
diesel-derive-newtype = { version = "2.1.0", optional = true }
diesel = { version = "2.2.0", features = ["postgres", "uuid"], optional = true }
error-chain = "0.12.0"
inlinable_string = { version = "0.1.0", default-features = false }
serde = { version = "1.0.15", optional = true }
uuid = { version = "1.8.0", features = ["v4"] }
[features]
default = []
serde = ["dep:serde", "inlinable_string/serde"]
diesel-uuid = ["dep:diesel-derive-newtype", "dep:diesel"]
diesel = ["diesel-uuid"]
[dev-dependencies]
serde_json = "1.0"
serde_derive = "1.0"
diesel = { version = "2.2.0", features = ["postgres", "uuid"] }