Skip to content

Commit d0d1b2e

Browse files
committed
crates: temporarily disconnect jiff-{icu,sqlx,diesel} from workspace
... I can't figure out how to publish `jiff 0.2` with these crates trying to select `jiff 0.2` from crates.io... which doesn't exist yet. WTF. I guess I'm probably holding Cargo workspaces wrong. ¯\_(ツ)_/¯
1 parent 0ba2c63 commit d0d1b2e

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,17 @@ include = [
3131
[workspace]
3232
members = [
3333
"crates/jiff-cli",
34-
"crates/jiff-diesel",
35-
"crates/jiff-icu",
36-
"crates/jiff-sqlx",
34+
# "crates/jiff-diesel",
35+
# "crates/jiff-icu",
36+
# "crates/jiff-sqlx",
3737
"crates/jiff-tzdb",
3838
"crates/jiff-tzdb-platform",
3939
"examples/*",
4040
]
4141
exclude = [
42+
"crates/jiff-diesel",
43+
"crates/jiff-icu",
44+
"crates/jiff-sqlx",
4245
"examples/diesel-mysql",
4346
"examples/diesel-postgres",
4447
"examples/diesel-sqlite",

crates/jiff-diesel/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jiff-diesel"
3-
version = "0.0.1" #:version
3+
version = "0.1.0" #:version
44
authors = ["Andrew Gallant <jamslam@gmail.com>"]
55
license = "Unlicense OR MIT"
66
homepage = "https://github.com/BurntSushi/jiff/tree/master/crates/jiff-diesel"
@@ -26,8 +26,8 @@ postgres = ["diesel/postgres_backend"]
2626
sqlite = ["diesel/sqlite"]
2727

2828
[dependencies]
29-
jiff = { version = "0.1.29", path = "../..", default-features = false, features = ["std"] }
29+
jiff = { version = "0.2.0", path = "../..", default-features = false, features = ["std"] }
3030
diesel = { version = "2.0.0", default-features = false }
3131

3232
[dev-dependencies]
33-
jiff = { version = "0.1.29", path = "../..", default-features = true }
33+
jiff = { version = "0.2.0", path = "../..", default-features = true }

crates/jiff-icu/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jiff-icu"
3-
version = "0.0.1" #:version
3+
version = "0.1.0" #:version
44
authors = ["Andrew Gallant <jamslam@gmail.com>"]
55
license = "Unlicense OR MIT"
66
homepage = "https://github.com/BurntSushi/jiff/tree/master/crates/jiff-icu"
@@ -25,9 +25,9 @@ std = ["alloc", "icu_calendar/std", "jiff/std"]
2525
alloc = ["jiff/alloc"]
2626

2727
[dependencies]
28-
jiff = { version = "0.1.29", path = "../..", default-features = false }
28+
jiff = { version = "0.2.0", path = "../..", default-features = false }
2929
icu_calendar = { version = "1.5.2", default-features = false }
3030

3131
[dev-dependencies]
32-
jiff = { version = "0.1.29", path = "../..", default-features = true }
32+
jiff = { version = "0.2.0", path = "../..", default-features = true }
3333
icu = { version = "1.5.0", features = ["std"] }

crates/jiff-sqlx/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jiff-sqlx"
3-
version = "0.0.1" #:version
3+
version = "0.1.0" #:version
44
authors = ["Andrew Gallant <jamslam@gmail.com>"]
55
license = "Unlicense OR MIT"
66
homepage = "https://github.com/BurntSushi/jiff/tree/master/crates/jiff-sqlx"
@@ -25,10 +25,10 @@ postgres = ["dep:sqlx-postgres"]
2525
sqlite = ["dep:sqlx-sqlite"]
2626

2727
[dependencies]
28-
jiff = { version = "0.1.29", path = "../..", default-features = false }
28+
jiff = { version = "0.2.0", path = "../..", default-features = false }
2929
sqlx-core = { version = "0.8.0", default-features = false }
3030
sqlx-postgres = { version = "0.8.0", default-features = false, optional = true }
3131
sqlx-sqlite = { version = "0.8.0", default-features = false, optional = true }
3232

3333
[dev-dependencies]
34-
jiff = { version = "0.1.29", path = "../..", default-features = true }
34+
jiff = { version = "0.2.0", path = "../..", default-features = true }

0 commit comments

Comments
 (0)