mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-23 00:34:20 +01:00
03dd3ddf8b
* Add uuid_v7 * Actually use the new uuid * Add a test to ensure all uuids are unique, even in a tight loop * Make clippy happy
18 lines
571 B
TOML
18 lines
571 B
TOML
[package]
|
|
name = "atuin-common"
|
|
version = "14.0.0"
|
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
description = "common library for atuin"
|
|
homepage = "https://atuin.sh"
|
|
repository = "https://github.com/ellie/atuin"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
serde = { version = "1.0.145", features = ["derive"] }
|
|
uuid = { version = "1.2", features = ["v4"] }
|
|
rand = { version = "0.8.5", features = ["std"] }
|