-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 898 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 898 Bytes
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 = "fugit"
version = "0.4.0"
edition = "2021"
authors = ["Emil Fresk <emil.fresk@gmail.com>"]
description = "Time library for embedded targets with ease-of-use and performance first."
keywords = ["Time", "Duration", "Instant", "const"]
categories = ["date-and-time", "embedded", "no-std"]
readme = "README.md"
repository = "https://github.com/korken89/fugit"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
serde = ["dep:serde"]
postcard_max_size = ["dep:postcard", "serde"]
[dependencies]
gcd = "2.3"
serde = { version = "1", optional = true, default-features = false, features = ["derive"] }
postcard = { version = "1.1", features = ["experimental-derive"], optional = true }
[dependencies.defmt]
version = "1"
optional = true
[package.metadata.docs.rs]
all-features = true