-
Notifications
You must be signed in to change notification settings - Fork 22
/
Cargo.toml
30 lines (26 loc) · 835 Bytes
/
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
[package]
name = "diesel-derive-newtype"
version = "2.1.2"
authors = ["Brandon W Maister <[email protected]>"]
categories = ["database", "rust-patterns"]
description = "Automatically connect newtypes to Diesel using their wrapped type"
edition = "2018"
keywords = ["newtype", "derive"]
license = "Apache-2.0/MIT"
readme = "README.md"
repository = "https://github.com/quodlibetor/diesel-derive-newtype"
# Inherited MSRV of `syn`.
rust-version = "1.65"
[dependencies]
proc-macro2 = "1.0.51"
syn = "2.0.10"
quote = "1.0.23"
[badges]
maintenance = { status = "passively-maintained" }
[dev-dependencies]
diesel = { version = "2.1.0", features = ["sqlite"], default-features = false }
[lib]
proc-macro = true
# required by cargo-readme until this is merged:
# https://github.com/livioribeiro/cargo-readme/pull/16
path = "src/lib.rs"