-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from xmakro/main
Upgrade crates and new version
- Loading branch information
Showing
3 changed files
with
43 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,29 @@ | ||
[package] | ||
name = "snowflake-jwt" | ||
version = "0.3.0" | ||
edition = "2021" | ||
authors = [ | ||
"Andrew Korzhuev <korzhuev@andrusha.me>", | ||
"Artem Semenov <hi@artps.org>", | ||
] | ||
categories = ["cryptography"] | ||
description = "Snowflake JWT token generator" | ||
authors = ["Andrew Korzhuev <korzhuev@andrusha.me>", "Artem Semenov <hi@artps.org>"] | ||
repository = "https://github.com/mycelial/snowflake-rs" | ||
documentation = "http://docs.rs/snowflake-jwt/" | ||
edition = "2021" | ||
keywords = ["snowflake", "database", "api", "jwt"] | ||
categories = ["cryptography"] | ||
readme = "README.md" | ||
license = "Apache-2.0" | ||
name = "snowflake-jwt" | ||
readme = "README.md" | ||
repository = "https://github.com/mycelial/snowflake-rs" | ||
version = "0.3.1" | ||
|
||
[dependencies] | ||
thiserror = "1" | ||
base64 = "0.22" | ||
jsonwebtoken = "9" | ||
rsa = "0.9" | ||
sha2 = "0.10" | ||
base64 = "0.21" | ||
jsonwebtoken = "8" | ||
serde = "1" | ||
sha2 = "0.10" | ||
thiserror = "1" | ||
time = "0.3" | ||
|
||
[dev-dependencies] | ||
anyhow = "1" | ||
ureq = { version = "2", features = ["json"] } | ||
clap = { version = "4", features = ["derive"] } | ||
ureq = { version = "2", features = ["json"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,21 @@ | ||
[package] | ||
edition = "2021" | ||
name = "snowflake-rust-tracing" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
anyhow = "1.0.79" | ||
arrow = { version = "50.0.0", features = ["prettyprint"] } | ||
dotenv = "0.15.0" | ||
anyhow = "1" | ||
arrow = { version = "51", features = ["prettyprint"] } | ||
dotenv = "0.15" | ||
snowflake-api = { path = "../../../snowflake-api" } | ||
|
||
|
||
tokio = { version = "1.35.1", features = ["full"] } | ||
tracing = "0.1.40" | ||
opentelemetry = "0.22" | ||
opentelemetry-otlp = "0.15" | ||
opentelemetry-semantic-conventions = "0.14" | ||
opentelemetry_sdk = { version = "0.22", features = ["rt-tokio"] } | ||
reqwest-middleware = "0.3" | ||
reqwest-tracing = { version = "0.5", features = ["opentelemetry_0_21"] } | ||
tokio = { version = "1", features = ["full"] } | ||
tracing = "0.1" | ||
tracing-opentelemetry = "0.23" | ||
tracing-subscriber = "0.3" | ||
tracing-opentelemetry = "0.22" | ||
opentelemetry-otlp = "0.14" | ||
opentelemetry = "0.21" | ||
opentelemetry_sdk = { version = "0.21", features = ["rt-tokio"] } | ||
reqwest-tracing = { version = "0.4", features = ["opentelemetry_0_21"] } | ||
reqwest-middleware = { version = "*" } | ||
opentelemetry-semantic-conventions = "0.13" |