-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (40 loc) · 1.04 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
[package]
name = "astrolabe"
version = "0.5.3"
edition = "2021"
description = "Date and time library for Rust. Aims to be feature rich, lightweight and easy-to-use."
homepage = "https://github.com/giyomoon/astrolabe"
documentation = "https://docs.rs/astrolabe/"
repository = "https://github.com/giyomoon/astrolabe"
readme = "README.md"
authors = ["Jasmin <code@jasi.dev>"]
license = "MIT OR Apache-2.0"
keywords = ["date", "time"]
categories = ["date-and-time"]
rust-version = "1.56"
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
sqlx-postgres = ["sqlx", "sqlx/postgres"]
[dependencies.serde]
version = "1.0"
default-features = false
optional = true
[dependencies.sqlx]
version = "^0.8.1"
default-features = false
optional = true
[dev-dependencies]
serde_test = "1.0"
[dev-dependencies.sqlx]
version = "^0.8.1"
default-features = false
features = ["runtime-tokio-rustls", "migrate", "macros", "postgres"]