jl-types-rs/Cargo.toml

21 lines
542 B
TOML
Raw Normal View History

2023-03-15 00:57:57 +00:00
[package]
name = "jl-types"
version = "0.1.0"
edition = "2021"
[lib]
[dependencies]
chrono = { version = "0.4.23", features = [ "serde" ] }
chrono-tz = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.88"
uuid = { version = "1.3.0", features = ["v4", "fast-rng", "macro-diagnostics", "serde"] }
format_num = "0.1.0"
2023-03-15 23:41:20 +00:00
sqlx = { version = "0.6.0", features = [ "runtime-tokio-rustls", "postgres", "chrono", "uuid" ], optional = true }
2023-03-15 00:57:57 +00:00
bincode = "1.3.3"
2023-04-14 18:49:37 +00:00
rand = "0.8.5"
2023-03-15 00:57:57 +00:00
[features]
2023-03-15 23:41:20 +00:00
sqlx = ["dep:sqlx"]
2023-03-17 16:04:30 +00:00
wasm = ["uuid/js"]