Skip to content

Commit

Permalink
align release
Browse files Browse the repository at this point in the history
  • Loading branch information
jondot committed May 12, 2024
1 parent a3eb4d1 commit 68be79c
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions teller-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
name = "teller"
version = "2.0.0"
edition = "2021"
description = "A developer-first multi provider secret manager"
authors = ["Dotan Nahum <dotan@rng0.io>", "Elad Kaplan <kaplan.elad@gmail.com>"]
documentation = "https://docs.rs/teller/"
repository = "https://github.com/tellerops/teller"
keywords = ["vault", "secret", "devtool"]
license = "Apache-2.0"
readme = "../README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
Expand All @@ -21,8 +28,8 @@ strum = { workspace = true }
proc-macro2 = "1.0.63" # Remove once https://github.com/rust-lang/rust/issues/113152 is fixed.
clap = { version = "4.3.0", features = ["cargo", "derive"] }
exitcode = { version = "^1.1.2" }
console = { version = "*" }
comfy-table = { version = "*" }
console = { version = "0.15.8" }
comfy-table = { version = "7.1.1" }
dialoguer = { version = "0.11.0" }
teller-providers = { version = "*", path = "../teller-providers" }
teller-core = { version = "*", path = "../teller-core" }
Expand Down
2 changes: 1 addition & 1 deletion teller-cli/src/bin/teller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::process::exit;

use clap::Parser;
use eyre::Result;
use teller_cli::{cli, tracing};
use teller::{cli, tracing};

#[tokio::main]
async fn main() -> Result<()> {
Expand Down
13 changes: 10 additions & 3 deletions teller-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
name = "teller-core"
version = "2.0.0"
edition = "2021"
description = "A developer-first multi provider secret manager"
authors = ["Dotan Nahum <dotan@rng0.io>", "Elad Kaplan <kaplan.elad@gmail.com>"]
documentation = "https://docs.rs/teller/"
repository = "https://github.com/tellerops/teller"
keywords = ["vault", "secret", "devtool"]
license = "Apache-2.0"
readme = "../README.md"

[dependencies]
serde = { workspace = true }
Expand All @@ -15,13 +22,13 @@ shell-words = "1"
duct = "0.13.6"
thiserror = { workspace = true }
fs-err = "2.9.0"
ignore = "*"
unicode-width = "*"
ignore = "0.4.22"
unicode-width = "0.1.12"
aho-corasick = { workspace = true }
tera = { workspace = true }
csv = "1.2.1"
teller-providers = { version = "*", path = "../teller-providers" }

[dev-dependencies]
insta = { workspace = true }
stringreader = "*"
stringreader = "0.1.1"
10 changes: 8 additions & 2 deletions teller-providers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ name = "teller-providers"
version = "2.0.0"
edition = "2021"

# [lib]
# name = "teller-providers"
description = "A developer-first multi provider secret manager"
authors = ["Dotan Nahum <dotan@rng0.io>", "Elad Kaplan <kaplan.elad@gmail.com>"]
documentation = "https://docs.rs/teller/"
repository = "https://github.com/tellerops/teller"
keywords = ["vault", "secret", "devtool"]
license = "Apache-2.0"
readme = "../README.md"


[features]
default = [
Expand Down

0 comments on commit 68be79c

Please sign in to comment.