2025-09-12 09:27:14 +09:00
|
|
|
[package]
|
|
|
|
|
name = "caretta-id"
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
version = "0.1.0-alpha"
|
|
|
|
|
description.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
|
|
|
|
|
[features]
|
2025-09-15 17:05:30 +09:00
|
|
|
default=[]
|
|
|
|
|
rusqlite = ["dep:rusqlite"]
|
|
|
|
|
serde = ["dep:serde"]
|
2025-09-12 09:27:14 +09:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
rand.workspace = true
|
2025-09-15 17:05:30 +09:00
|
|
|
rusqlite = {workspace = true, optional = true}
|
|
|
|
|
serde = {workspace = true, optional = true}
|
2025-09-12 09:27:14 +09:00
|
|
|
thiserror.workspace = true
|
2025-09-15 17:05:30 +09:00
|
|
|
|
|
|
|
|
|