Skip to content

Commit

Permalink
biscuit-auth v3.0.0 (#144)
Browse files Browse the repository at this point in the history
* biscuit-parser v0.1.0
* biscuit-quote v0.2.0
* biscuit-auth v3.0.0
  • Loading branch information
Geal committed Mar 27, 2023
1 parent e8c86d3 commit 4837208
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions biscuit-auth/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "biscuit-auth"
version = "3.0.0-alpha4"
version = "3.0.0"
description = "an authorization token with decentralized verification and offline attenuation"
authors = ["Geoffroy Couprie <contact@geoffroycouprie.com>"]
edition = "2018"
Expand Down Expand Up @@ -42,8 +42,8 @@ serde = { version = "1.0.132", optional = true, features = ["derive"] }
getrandom = { version = "0.1.16" }
time = { version = "0.3.7", features = ["formatting", "parsing"] }
uuid = { version = "1", optional = true }
biscuit-parser = { version = "0.1.0-alpha4", path = "../biscuit-parser" }
biscuit-quote = { version = "0.2.0-alpha5", optional = true, path = "../biscuit-quote" }
biscuit-parser = { version = "0.1.0", path = "../biscuit-parser" }
biscuit-quote = { version = "0.2.0", optional = true, path = "../biscuit-quote" }


[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion biscuit-parser/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "biscuit-parser"
version = "0.1.0-alpha4"
version = "0.1.0"
edition = "2021"
authors = ["Clément Delafargue <clement@delafargue.name>", "Geoffroy Couprie <contact@geoffroycouprie.com>"]
description = "Datalog parser used in the biscuit-auth and biscuit-quote crates"
Expand Down
6 changes: 3 additions & 3 deletions biscuit-quote/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "biscuit-quote"
version = "0.2.0-alpha5"
version = "0.2.0"
edition = "2021"
description = "macros for compile time datalog parsing for Biscuit authorization tokens"
authors = ["Clément Delafargue <clement@delafargue.name>", "Geoffroy Couprie <contact@geoffroycouprie.com>"]
Expand All @@ -10,12 +10,12 @@ license = "Apache-2.0"
proc-macro = true

[dependencies]
biscuit-parser = { path = "../biscuit-parser", features = ["datalog-macro"], version = "0.1.0-alpha4" }
biscuit-parser = { path = "../biscuit-parser", features = ["datalog-macro"], version = "0.1.0" }
proc-macro2 = "1"
quote = "1.0.14"
syn = { version = "1.0.85", features = ["full", "extra-traits"] }
proc-macro-error = "1.0"

[dev-dependencies]
biscuit-auth = { path = "../biscuit-auth", version = "3.0.0-alpha4", features = ["datalog-macro"] }
biscuit-auth = { path = "../biscuit-auth", version = "3.0.0", features = ["datalog-macro"] }
hex = "0.4.3"

0 comments on commit 4837208

Please sign in to comment.