@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## Unreleased
|
## [0.4.0] - 2025-08-08
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
@@ -126,6 +126,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
- Initialize the project - by Awiteb
|
- Initialize the project - by Awiteb
|
||||||
|
|
||||||
|
[0.4.0]: https://git.4rs.nl/awiteb/n34.git/tag/?h=v0.4.0
|
||||||
[0.3.0]: https://git.4rs.nl/awiteb/n34.git/tag/?h=v0.3.0
|
[0.3.0]: https://git.4rs.nl/awiteb/n34.git/tag/?h=v0.3.0
|
||||||
[0.2.0]: https://git.4rs.nl/awiteb/n34.git/tag/?h=v0.2.0
|
[0.2.0]: https://git.4rs.nl/awiteb/n34.git/tag/?h=v0.2.0
|
||||||
[0.1.0]: https://git.4rs.nl/awiteb/n34.git/tag/?h=v0.1.0
|
[0.1.0]: https://git.4rs.nl/awiteb/n34.git/tag/?h=v0.1.0
|
||||||
|
|||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -1231,7 +1231,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "n34"
|
name = "n34"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"clap",
|
"clap",
|
||||||
|
|||||||
58
Cargo.toml
58
Cargo.toml
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "n34"
|
name = "n34"
|
||||||
description = "A CLI to interact with NIP-34 and other stuff related to code in Nostr"
|
description = "A CLI to interact with NIP-34 and other stuff related to code in Nostr"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
authors = ["Awiteb <a@4rs.nl>"]
|
authors = ["Awiteb <a@4rs.nl>"]
|
||||||
@@ -14,23 +14,6 @@ categories = ["command-line-utilities"]
|
|||||||
rust-version = "1.88.0"
|
rust-version = "1.88.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap-verbosity-flag = { version = "3.0.3", default-features = false, features = [
|
|
||||||
"tracing",
|
|
||||||
] }
|
|
||||||
reqwest = { version = "0.12.22", default-features = false, features = [
|
|
||||||
"http2",
|
|
||||||
"json",
|
|
||||||
"rustls-tls",
|
|
||||||
] }
|
|
||||||
|
|
||||||
clap = { version = "4.5.42", features = ["derive"] }
|
|
||||||
nostr = { version = "0.43.0", default-features = false, features = ["std"] }
|
|
||||||
nostr-connect = { version = "0.43.0", default-features = false }
|
|
||||||
nostr-keyring = { version = "0.43.0", default-features = false }
|
|
||||||
nostr-sdk = { version = "0.43.0", default-features = false }
|
|
||||||
serde = { version = "1.0.219", features = ["derive"] }
|
|
||||||
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
|
|
||||||
|
|
||||||
chrono = "0.4.41"
|
chrono = "0.4.41"
|
||||||
convert_case = "0.8.0"
|
convert_case = "0.8.0"
|
||||||
dirs = "6.0.0"
|
dirs = "6.0.0"
|
||||||
@@ -45,6 +28,45 @@ toml = "0.9.4"
|
|||||||
tracing = "0.1.41"
|
tracing = "0.1.41"
|
||||||
tracing-subscriber = "0.3.19"
|
tracing-subscriber = "0.3.19"
|
||||||
|
|
||||||
|
[dependencies.clap]
|
||||||
|
features = ["derive"]
|
||||||
|
version = "4.5.42"
|
||||||
|
|
||||||
|
[dependencies.clap-verbosity-flag]
|
||||||
|
default-features = false
|
||||||
|
features = ["tracing"]
|
||||||
|
version = "3.0.3"
|
||||||
|
|
||||||
|
[dependencies.nostr]
|
||||||
|
default-features = false
|
||||||
|
features = ["std"]
|
||||||
|
version = "0.43.0"
|
||||||
|
|
||||||
|
[dependencies.nostr-connect]
|
||||||
|
default-features = false
|
||||||
|
version = "0.43.0"
|
||||||
|
|
||||||
|
[dependencies.nostr-keyring]
|
||||||
|
default-features = false
|
||||||
|
version = "0.43.0"
|
||||||
|
|
||||||
|
[dependencies.nostr-sdk]
|
||||||
|
default-features = false
|
||||||
|
version = "0.43.0"
|
||||||
|
|
||||||
|
[dependencies.reqwest]
|
||||||
|
default-features = false
|
||||||
|
features = ["http2", "json", "rustls-tls"]
|
||||||
|
version = "0.12.22"
|
||||||
|
|
||||||
|
[dependencies.serde]
|
||||||
|
features = ["derive"]
|
||||||
|
version = "1.0.219"
|
||||||
|
|
||||||
|
[dependencies.tokio]
|
||||||
|
features = ["macros", "rt-multi-thread"]
|
||||||
|
version = "1.47.1"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
lto = "fat"
|
lto = "fat"
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|||||||
Reference in New Issue
Block a user