2023-07-25 19:04:38 +00:00
|
|
|
[package]
|
2023-07-26 00:51:49 +00:00
|
|
|
name = "julid-rs"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Joe Ardent <code@ardent.nebcorp.com>"]
|
2023-07-25 19:04:38 +00:00
|
|
|
edition = "2021"
|
2023-07-26 00:51:49 +00:00
|
|
|
keywords = ["ulid", "library", "sqlite", "extension"]
|
|
|
|
|
|
|
|
description = "A library and loadable extension for SQLite that uses it, that provides Joe's ULIDs."
|
|
|
|
readme = "README.md"
|
|
|
|
license-file = "LICENSE.md"
|
|
|
|
repository = "https://gitlab.com/nebkor/julid"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "julid"
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
2023-07-25 19:04:38 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-07-26 00:51:49 +00:00
|
|
|
rand = "0.8"
|
|
|
|
sqlite-loadable = "0.0.5"
|