Skip to content

Commit abcf764

Browse files
committed
Reorganize rust file tree
Place all rust code under samba/rust, similar to how we organize python code in the samba tree. Signed-off-by: David Mulder <[email protected]> Reviewed-by: Alexander Bokovoy <[email protected]>
1 parent 3f6254a commit abcf764

Some content is hidden

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

66 files changed

+35
-32
lines changed

himmelblaud/wscript_build

Lines changed: 0 additions & 7 deletions
This file was deleted.
File renamed without changes.

rust/Cargo.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[workspace.package]
2+
edition = "2021"
3+
license = "GPL-3.0-or-later"
4+
homepage = "https://www.samba.org/"
5+
version = "4.21.0"
6+
7+
[workspace]
8+
resolver = "2"
9+
members = [
10+
"chelps", "dbg", "himmelblaud", "idmap",
11+
"nss", "ntstatus_gen", "pam",
12+
"param", "sock", "tdb", "version",
13+
]
14+
15+
[workspace.dependencies]
16+
param = { path = "param" }
17+
dbg = { path = "dbg" }
18+
chelps = { path = "chelps" }
19+
sock = { path = "sock" }
20+
ntstatus_gen = { path = "ntstatus_gen" }
21+
tdb = { path = "tdb" }
22+
idmap = { path = "idmap" }
23+
libc = "0.2.155"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
[workspace.package]
2-
edition = "2021"
3-
license = "GPL-3.0-or-later"
4-
homepage = "https://www.samba.org/"
5-
version = "4.21.0"
6-
71
[package]
82
name = "himmelblaud"
93
edition.workspace = true
@@ -31,21 +25,4 @@ idmap = { workspace = true }
3125
libc = { workspace = true }
3226

3327
[build-dependencies]
34-
version = { path = "version" }
35-
36-
[workspace]
37-
members = [
38-
"chelps", "dbg", "idmap",
39-
"nss", "ntstatus_gen", "pam",
40-
"param", "sock", "tdb", "version",
41-
]
42-
43-
[workspace.dependencies]
44-
param = { path = "param" }
45-
dbg = { path = "dbg" }
46-
chelps = { path = "chelps" }
47-
sock = { path = "sock" }
48-
ntstatus_gen = { path = "ntstatus_gen" }
49-
tdb = { path = "tdb" }
50-
idmap = { path = "idmap" }
51-
libc = "0.2.155"
28+
version = { path = "../version" }

0 commit comments

Comments
 (0)