19 lines
475 B
TOML
19 lines
475 B
TOML
[package]
|
|
name = "julid-rs"
|
|
version = "0.0.1"
|
|
authors = ["Joe Ardent <code@ardent.nebcorp.com>"]
|
|
edition = "2021"
|
|
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"]
|
|
|
|
[dependencies]
|
|
rand = "0.8"
|
|
sqlite-loadable = "0.0.5"
|