diff options
| author | cyqsimon <28627918+cyqsimon@users.noreply.github.com> | 2024-02-06 23:34:03 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-06 15:34:03 +0000 |
| commit | 318bdd895590c97dd53f8d3661d76fa1c0cd67a0 (patch) | |
| tree | 98fc7c88708230d1a5318cc26424846d4539a2bc /atuin-client/Cargo.toml | |
| parent | chore(deps): bump debian (#1673) (diff) | |
| download | atuin-318bdd895590c97dd53f8d3661d76fa1c0cd67a0.zip | |
Add timezone configuration option & CLI overrides (#1517)
* Allow specifying a timezone in history search/list
* Fix clippy complaints
* Add a bit more comment on supporting named timezones
* Add rudimentary tests
* Ditch local timezone test
* Timezone configuration support
* Set default timezone to `local`
* `--tz` -> `--timezone`
`--tz` is kept as a visible alias
Diffstat (limited to 'atuin-client/Cargo.toml')
| -rw-r--r-- | atuin-client/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/atuin-client/Cargo.toml b/atuin-client/Cargo.toml index e224ad83..991c594e 100644 --- a/atuin-client/Cargo.toml +++ b/atuin-client/Cargo.toml @@ -22,7 +22,7 @@ atuin-common = { path = "../atuin-common", version = "17.2.1" } log = { workspace = true } base64 = { workspace = true } -time = { workspace = true } +time = { workspace = true, features = ["macros", "formatting"] } clap = { workspace = true } eyre = { workspace = true } directories = { workspace = true } @@ -53,6 +53,7 @@ thiserror = { workspace = true } futures = "0.3" crypto_secretbox = "0.1.1" generic-array = { version = "0.14", features = ["serde"] } +serde_with = "3.5.1" # encryption rusty_paseto = { version = "0.6.0", default-features = false } |
