Bump versions
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Aode (lion) 2021-12-05 15:19:45 -06:00
parent caa4da19b9
commit 52fbfcdb82
18 changed files with 49 additions and 49 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "apub"
description = "Utilities for building activitypub servers"
version = "0.1.1"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
@ -34,18 +34,18 @@ utils = [
]
[dependencies]
apub-actix-web = { version = "0.1.0", path = "./apub-actix-web/", optional = true }
apub-awc = { version = "0.1.0", path = "./apub-awc/", optional = true }
apub-background-jobs = { version = "0.1.0", path = "./apub-background-jobs/", optional = true }
apub-breaker-session = { version = "0.1.0", path = "./apub-breaker-session/", optional = true }
apub-core = { version = "0.1.0", path = "./apub-core/" }
apub-ingest = { version = "0.1.0", path = "./apub-ingest/", optional = true }
apub-openssl = { version = "0.1.0", path = "./apub-openssl/", optional = true }
apub-privatekey = { version = "0.1.0", path = "./apub-privatekey/" }
apub-publickey = { version = "0.1.0", path = "./apub-publickey/", optional = true }
apub-reqwest = { version = "0.1.0", path = "./apub-reqwest/", optional = true }
apub-rustcrypto = { version = "0.1.0", path = "./apub-rustcrypto/", optional = true }
apub-simple-activitypub = { version = "0.1.0", path = "./apub-simple-activitypub/", optional = true }
apub-actix-web = { version = "0.2.0", path = "./apub-actix-web/", optional = true }
apub-awc = { version = "0.2.0", path = "./apub-awc/", optional = true }
apub-background-jobs = { version = "0.2.0", path = "./apub-background-jobs/", optional = true }
apub-breaker-session = { version = "0.2.0", path = "./apub-breaker-session/", optional = true }
apub-core = { version = "0.2.0", path = "./apub-core/" }
apub-ingest = { version = "0.2.0", path = "./apub-ingest/", optional = true }
apub-openssl = { version = "0.2.0", path = "./apub-openssl/", optional = true }
apub-privatekey = { version = "0.2.0", path = "./apub-privatekey/" }
apub-publickey = { version = "0.2.0", path = "./apub-publickey/", optional = true }
apub-reqwest = { version = "0.2.0", path = "./apub-reqwest/", optional = true }
apub-rustcrypto = { version = "0.2.0", path = "./apub-rustcrypto/", optional = true }
apub-simple-activitypub = { version = "0.2.0", path = "./apub-simple-activitypub/", optional = true }
[dev-dependencies]
async-trait = "0.1.51"

View file

@ -1,7 +1,7 @@
[package]
name = "apub-actix-web"
description = "Utilities for building activitypub servers"
version = "0.1.0"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
@ -11,9 +11,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub-core = { version = "0.1.0", path = "../apub-core/" }
apub-privatekey = { version = "0.1.0", path = "../apub-privatekey/" }
apub-publickey = { version = "0.1.0", path = "../apub-publickey/" }
apub-core = { version = "0.2.0", path = "../apub-core/" }
apub-privatekey = { version = "0.2.0", path = "../apub-privatekey/" }
apub-publickey = { version = "0.2.0", path = "../apub-publickey/" }
actix-web = { version = "4.0.0-beta.12", default-features = false }
http-signature-normalization-actix = { version = "0.5.0-beta.12", default-features = false, features = ["server", "digest"] }
serde = { version = "1", features = ["derive"] }

View file

@ -1,7 +1,7 @@
[package]
name = "apub-awc"
description = "Utilities for building activitypub servers"
version = "0.1.0"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
@ -12,7 +12,7 @@ edition = "2021"
[dependencies]
actix-http = { version = "3.0.0-beta.14", default-features = false }
apub-core = { version = "0.1.0", path = "../apub-core/" }
apub-core = { version = "0.2.0", path = "../apub-core/" }
async-trait = "0.1.51"
awc = { version = "3.0.0-beta.12", default-features = false }
http-signature-normalization-actix = { version = "0.5.0-beta.12", default-features = false, features = ["client", "digest"] }
@ -22,5 +22,5 @@ thiserror = "1"
url = "2"
[dev-dependencies]
apub-openssl = { version = "0.1.0", path = "../apub-openssl/" }
apub-openssl = { version = "0.2.0", path = "../apub-openssl/" }
openssl = "0.10"

View file

@ -1,7 +1,7 @@
[package]
name = "apub-background-jobs"
description = "Utilities for building activitypub servers"
version = "0.1.0"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
@ -12,7 +12,7 @@ edition = "2021"
[dependencies]
anyhow = "1"
apub-core = { version = "0.1.0", path = "../apub-core/" }
apub-core = { version = "0.2.0", path = "../apub-core/" }
async-trait = "0.1.51"
background-jobs = "0.11.0"
serde = { version = "1", features = ["derive"] }
@ -21,7 +21,7 @@ url = { version = "2", features = ["serde"] }
[dev-dependencies]
actix-rt = "2.5.0"
apub-reqwest = { version = "0.1.0", path = "../apub-reqwest/" }
apub-openssl = { version = "0.1.0", path = "../apub-openssl/" }
apub-reqwest = { version = "0.2.0", path = "../apub-reqwest/" }
apub-openssl = { version = "0.2.0", path = "../apub-openssl/" }
openssl = "0.10"
reqwest = { version = "0.11", default-features = false }

View file

@ -1,7 +1,7 @@
[package]
name = "apub-breaker-session"
description = "Utilities for building activitypub servers"
version = "0.1.0"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
@ -11,6 +11,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub-core = { version = "0.1.0", path = "../apub-core/" }
apub-core = { version = "0.2.0", path = "../apub-core/" }
dashmap = "4.0.2"
url = "2"

View file

@ -1,7 +1,7 @@
[package]
name = "apub-core"
description = "Utilities for building activitypub servers"
version = "0.1.0"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"

View file

@ -1,7 +1,7 @@
[package]
name = "apub-ingest"
description = "Utilities for building activitypub servers"
version = "0.1.0"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
@ -11,6 +11,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub-core = { version = "0.1.0", path = "../apub-core/" }
apub-core = { version = "0.2.0", path = "../apub-core/" }
async-trait = "0.1.51"
url = "2"

View file

@ -1,7 +1,7 @@
[package]
name = "apub-openssl"
description = "Utilities for building activitypub servers"
version = "0.1.0"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
@ -11,7 +11,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub-core = { version = "0.1.0", path = "../apub-core/" }
apub-core = { version = "0.2.0", path = "../apub-core/" }
openssl = "0.10.36"
serde = { version = "1", features = ["derive"] }

View file

@ -1,7 +1,7 @@
[package]
name = "apub-privatekey"
description = "Utilities for building activitypub servers"
version = "0.1.0"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
@ -11,7 +11,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub-core = { version = "0.1.0", path = "../apub-core/" }
apub-core = { version = "0.2.0", path = "../apub-core/" }
async-trait = "0.1.51"
serde = { version = "1", features = ["derive"] }
url = { version = "2", features = ["serde"] }

View file

@ -1,7 +1,7 @@
[package]
name = "apub-publickey"
description = "Utilities for building activitypub servers"
version = "0.1.0"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
@ -11,8 +11,8 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub-core = { version = "0.1.0", path = "../apub-core/" }
apub-privatekey = { version = "0.1.0", path = "../apub-privatekey/" }
apub-core = { version = "0.2.0", path = "../apub-core/" }
apub-privatekey = { version = "0.2.0", path = "../apub-privatekey/" }
async-trait = "0.1.51"
serde = { version = "1", features = ["derive"] }
thiserror = "1"

View file

@ -1,7 +1,7 @@
[package]
name = "apub-reqwest"
description = "Utilities for building activitypub servers"
version = "0.1.0"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
@ -11,7 +11,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub-core = { version = "0.1.0", path = "../apub-core/" }
apub-core = { version = "0.2.0", path = "../apub-core/" }
async-trait = "0.1.51"
http-signature-normalization-reqwest = { version = "0.2.1", default-features = false, features = ["digest"] }
httpdate = "1.0.2"
@ -22,6 +22,6 @@ thiserror = "1"
url = "2"
[dev-dependencies]
apub-rustcrypto = { version = "0.1.0", path = "../apub-rustcrypto/" }
apub-rustcrypto = { version = "0.2.0", path = "../apub-rustcrypto/" }
rand = "0.8"
rsa = "0.5"

View file

@ -1,7 +1,7 @@
[package]
name = "apub-rustcrypto"
description = "Utilities for building activitypub servers"
version = "0.1.0"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
@ -11,7 +11,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub-core = { version = "0.1.0", path = "../apub-core/" }
apub-core = { version = "0.2.0", path = "../apub-core/" }
base64 = "0.13.0"
rsa = "0.5.0"
serde = { version = "1", features = ["derive"] }

View file

@ -1,7 +1,7 @@
[package]
name = "apub-simple-activitypub"
description = "Utilities for building activitypub servers"
version = "0.1.0"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
@ -11,8 +11,8 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub-core = { version = "0.1.0", path = "../apub-core/" }
apub-publickey = { version = "0.1.0", path = "../apub-publickey/" }
apub-core = { version = "0.2.0", path = "../apub-core/" }
apub-publickey = { version = "0.2.0", path = "../apub-publickey/" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
url = { version = "2", features = ["serde"] }

View file

@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
actix-web = { version = "4.0.0-beta.11", default-features = false }
apub = { version = "0.1.0", path = "../../", features = ["with-actix-web", "with-awc", "with-rustcrypto"] }
apub = { version = "0.2.0", path = "../../", features = ["with-actix-web", "with-awc", "with-rustcrypto"] }
async-trait = "0.1.51"
awc = { version = "3.0.0-beta.11", default-features = false, features = ["rustls"] }
dashmap = "4.0.2"

View file

@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
actix-rt = "2.4.0"
apub = { version = "0.1.0", path = "../../", features = ["with-awc", "with-rustcrypto"] }
apub = { version = "0.2.0", path = "../../", features = ["with-awc", "with-rustcrypto"] }
awc = { version = "3.0.0-beta.10", default-features = false, features = ["rustls"] }
example-types = { version = "0.1.0", path = "../example-types/" }
rand = "0.8.4"

View file

@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
actix-rt = "2.4.0"
apub = { version = "0.1.0", path = "../../", features = ["with-awc", "with-background-jobs", "with-rustcrypto"] }
apub = { version = "0.2.0", path = "../../", features = ["with-awc", "with-background-jobs", "with-rustcrypto"] }
anyhow = "1"
awc = { version = "3.0.0-beta.10", default-features = false, features = ["rustls"] }
background-jobs = "0.11.0"

View file

@ -6,6 +6,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub = { version = "0.1.0", path = "../../" }
apub = { version = "0.2.0", path = "../../" }
serde = { version = "1", features = ["derive"] }
url = { version = "2", features = ["serde"] }

View file

@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub = { version = "0.1.0", path = "../../", features = ["with-reqwest", "with-openssl"] }
apub = { version = "0.2.0", path = "../../", features = ["with-reqwest", "with-openssl"] }
example-types = { version = "0.1.0", path = "../example-types/" }
openssl = "0.10.13"
reqwest = "0.11.6"