Skip to content

Commit f380b0c

Browse files
authored
added crates folder (#3)
Signed-off-by: Miguel Ángel Ortuño <ortuman@gmail.com>
1 parent 1f6938e commit f380b0c

63 files changed

Lines changed: 43 additions & 43 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.toml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@
22
resolver = "2"
33

44
members = [
5-
"zyn-common",
6-
"zyn-modulator",
7-
"zyn-protocol",
8-
"zyn-protocol-macros",
9-
"zyn-server",
10-
"zyn-test-util",
11-
"zyn-util",
5+
"crates/common",
6+
"crates/modulator",
7+
"crates/protocol",
8+
"crates/protocol-macros",
9+
"crates/server",
10+
"crates/test-util",
11+
"crates/util",
1212
]
13+
14+
[profile.dev]
15+
debug = true
16+
17+
[profile.release]
18+
debug = true
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ tokio-util = { version = "0.7.15", features = ["rt", "codec"] }
1212
tracing = "0.1.41"
1313
parking_lot = "0.12.5"
1414
rand = "0.9.1"
15-
zyn-protocol = { path = "../zyn-protocol" }
16-
zyn-util = { path = "../zyn-util" }
15+
zyn-protocol = { path = "../protocol" }
16+
zyn-util = { path = "../util" }
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ serde_derive = "1.0.219"
1414
tracing = "0.1.41"
1515
tokio = { version = "1.48.0", features = ["io-util", "signal"] }
1616
tokio-util = { version = "0.7.15", features = ["rt"] }
17-
zyn-common = { path = "../zyn-common" }
18-
zyn-protocol = { path = "../zyn-protocol" }
19-
zyn-util = { path = "../zyn-util" }
17+
zyn-common = { path = "../common" }
18+
zyn-protocol = { path = "../protocol" }
19+
zyn-util = { path = "../util" }
2020

2121
[dev-dependencies]
22-
zyn-test-util = { path = "../zyn-test-util" }
22+
zyn-test-util = { path = "../test-util" }

0 commit comments

Comments
 (0)