Skip to content

Commit f12805d

Browse files
committed
Fix the package files for crates.io.
1 parent 080f675 commit f12805d

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ path = "lib.rs"
1515
crate-type = ["dylib"]
1616

1717
[dependencies]
18-
rustlex_codegen = { version = "*", path = "codegen" }
18+
rustlex_codegen = { version = "0.3.3", path = "codegen" }

codegen/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ path = "lib.rs"
1717
with-syntex = ["quasi/with-syntex", "quasi_codegen/with-syntex", "syntex", "syntex_syntax"]
1818

1919
[build-dependencies]
20-
quasi_codegen = { version = "*", optional = true }
21-
syntex = { version = "*", optional = true }
20+
quasi_codegen = { version = "0.10.0", optional = true }
21+
syntex = { version = "0.32.0", optional = true }
2222

2323
[dependencies]
24-
bit-set = "*"
25-
log = "*"
26-
fsa = { path = "../fsa" }
27-
quasi = { version = "*", optional = true }
28-
syntex = { version = "*", optional = true }
29-
syntex_syntax = { version = "*", optional = true }
24+
bit-set = ">= 0.3.0"
25+
log = "0.3.6"
26+
rustlex_fsa = { version = "0.3.3", path = "../fsa" }
27+
quasi = { version = "0.10.0", optional = true }
28+
syntex = { version = "0.32.0", optional = true }
29+
syntex_syntax = { version = "0.32.0", optional = true }

fsa/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "fsa"
2+
name = "rustlex_fsa"
33
version = "0.3.3"
44
authors = ["Leo Testard <leo.testard@gmail.com>"]
55
description = "Library for manipulating (deterministic) finite automata"
@@ -13,4 +13,4 @@ name = "fsa"
1313
path = "lib.rs"
1414

1515
[dependencies]
16-
bit-set = "*"
16+
bit-set = "0.4.0"

0 commit comments

Comments
 (0)