mirror of
https://github.com/atuinsh/atuin.git
synced 2025-01-16 03:10:21 +01:00
c05d285042
* Try different workspace structure
Move main crate (atuin) to be on the same level with other crates in
this workspace
* extract common dependencies to the workspace definition
* fix base64 v0.21 deprecation warning
* questionable: update deps & fix chrono deprecations
possible panic sites are unchanged, they're just more visible now
* Revert "questionable: update deps & fix chrono deprecations"
This reverts commit 993e60f8de
.
19 lines
479 B
TOML
19 lines
479 B
TOML
[package]
|
|
name = "atuin-common"
|
|
edition = "2018"
|
|
description = "common library for atuin"
|
|
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = { workspace = true }
|
|
serde = { workspace = true }
|
|
uuid = { workspace = true }
|
|
rand = { workspace = true }
|