forked from kbalt/ezk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (19 loc) · 809 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[workspace]
resolver = "2"
members = [
"crates/*",
"examples",
]
[workspace.package]
authors = ["kbalt"]
edition = "2021"
license = "MIT"
repository = "https://github.com/kbalt/ezk"
[workspace.dependencies]
internal = { package = "ezk-internal", version = "0.2.0", path = "crates/internal" }
sip-types = { package = "ezk-sip-types", version = "0.3.0", path = "crates/sip-types" }
sip-core = { package = "ezk-sip-core", version = "0.5", path = "crates/sip-core" }
sip-ua = { package = "ezk-sip-ua", version = "0.4.4", path = "crates/sip-core" }
sdp-types = { package = "ezk-sdp-types", version = "0.4.0", path = "crates/sdp-types" }
stun-types = { package = "ezk-stun-types", version = "0.2.0", path = "crates/stun-types" }
stun = { package = "ezk-stun", version = "0.3.0", path = "crates/stun" }