2024-05-12 12:30:32 +01:00
|
|
|
[package]
|
|
|
|
name = "lune-std-datetime"
|
2024-08-10 12:07:56 +01:00
|
|
|
version = "0.1.3"
|
2024-05-12 12:30:32 +01:00
|
|
|
edition = "2021"
|
|
|
|
license = "MPL-2.0"
|
2024-05-12 13:32:39 +01:00
|
|
|
repository = "https://github.com/lune-org/lune"
|
|
|
|
description = "Lune standard library - DateTime"
|
2024-05-12 12:30:32 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-10 12:07:56 +01:00
|
|
|
mlua = { version = "0.9.9", features = ["luau"] }
|
2024-05-12 12:30:32 +01:00
|
|
|
|
|
|
|
thiserror = "1.0"
|
2024-05-12 16:57:39 +01:00
|
|
|
chrono = "0.4.38"
|
|
|
|
chrono_lc = "0.1.6"
|
2024-05-12 12:30:32 +01:00
|
|
|
|
2024-08-10 12:07:56 +01:00
|
|
|
lune-utils = { version = "0.1.3", path = "../lune-utils" }
|